@@ -649,6 +649,7 @@ jobs:
649649 echo "c = '${{ matrix.arch_gcc }}-gcc'" | tee -a ~/cross.ini
650650 echo "cpp = '${{ matrix.arch_gcc }}-g++'" | tee -a ~/cross.ini
651651 echo "ar = '${{ matrix.arch_gcc }}-ar'" | tee -a ~/cross.ini
652+ echo "cmake = 'cmake'" | tee -a ~/cross.ini
652653 echo "strip = '${{ matrix.arch_gcc }}-strip'" | tee -a ~/cross.ini
653654 echo "[host_machine]" | tee -a ~/cross.ini
654655 echo "system = 'windows'" | tee -a ~/cross.ini
@@ -803,6 +804,7 @@ jobs:
803804 echo "cpp_ld = 'lld'" | tee -a ${{ runner.temp }}/cross.ini
804805 echo "ar = 'llvm-ar'" | tee -a ${{ runner.temp }}/cross.ini
805806 echo "strip = 'llvm-strip'" | tee -a ${{ runner.temp }}/cross.ini
807+ echo "cmake = 'cmake'" | tee -a ${{ runner.temp }}/cross.ini
806808 echo "[host_machine]" | tee -a ${{ runner.temp }}/cross.ini
807809 echo "system = 'linux'" | tee -a ${{ runner.temp }}/cross.ini
808810 echo "cpu_family = '${{ matrix.cpu_family }}'" | tee -a ${{ runner.temp }}/cross.ini
@@ -964,6 +966,7 @@ jobs:
964966 echo "cpp_ld = 'lld'" | tee -a ${{ runner.temp }}/cross.ini
965967 echo "ar = 'llvm-ar'" | tee -a ${{ runner.temp }}/cross.ini
966968 echo "strip = 'llvm-strip'" | tee -a ${{ runner.temp }}/cross.ini
969+ echo "cmake = 'cmake'" | tee -a ${{ runner.temp }}/cross.ini
967970 echo "[host_machine]" | tee -a ${{ runner.temp }}/cross.ini
968971 echo "system = 'linux'" | tee -a ${{ runner.temp }}/cross.ini
969972 echo "cpu_family = '${{ matrix.cpu_family }}'" | tee -a ${{ runner.temp }}/cross.ini
@@ -1154,6 +1157,7 @@ jobs:
11541157 echo "cpp = ['${{ steps.ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++', '--target=${{ matrix.arch_llvm }}']" | tee -a ${{ runner.temp }}/cross.ini
11551158 echo "ar = '${{ steps.ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-ar'" | tee -a ${{ runner.temp }}/cross.ini
11561159 echo "strip = 'llvm-strip'" | tee -a ${{ runner.temp }}/cross.ini
1160+ echo "cmake = 'cmake'" | tee -a ${{ runner.temp }}/cross.ini
11571161 echo "[host_machine]" | tee -a ${{ runner.temp }}/cross.ini
11581162 echo "system = 'android'" | tee -a ${{ runner.temp }}/cross.ini
11591163 echo "cpu_family = '${{ matrix.cpu_family }}'" | tee -a ${{ runner.temp }}/cross.ini
@@ -1228,6 +1232,7 @@ jobs:
12281232 echo "cpp = '${{ runner.temp }}/webos-sdk/bin/arm-webos-linux-gnueabi-g++'" | tee -a ${{ runner.temp }}/cross.ini
12291233 echo "ar = '${{ runner.temp }}/webos-sdk/bin/arm-webos-linux-gnueabi-ar'" | tee -a ${{ runner.temp }}/cross.ini
12301234 echo "strip = '${{ runner.temp }}/webos-sdk/bin/arm-webos-linux-gnueabi-strip'" | tee -a ${{ runner.temp }}/cross.ini
1235+ echo "cmake = 'cmake'" | tee -a ${{ runner.temp }}/cross.ini
12311236 echo "[host_machine]" | tee -a ${{ runner.temp }}/cross.ini
12321237 echo "system = 'linux'" | tee -a ${{ runner.temp }}/cross.ini
12331238 echo "cpu_family = 'arm'" | tee -a ${{ runner.temp }}/cross.ini
@@ -1332,6 +1337,7 @@ jobs:
13321337 echo "cpp = ['xcrun', '--sdk', '${{ matrix.sdk }}', 'clang++', '--target=${{ matrix.arch_llvm }}']" | tee -a ${{ runner.temp }}/cross.ini
13331338 echo "ar = 'ar'" | tee -a ${{ runner.temp }}/cross.ini
13341339 echo "strip = 'strip'" | tee -a ${{ runner.temp }}/cross.ini
1340+ echo "cmake = 'cmake'" | tee -a ${{ runner.temp }}/cross.ini
13351341 echo "[host_machine]" | tee -a ${{ runner.temp }}/cross.ini
13361342 echo "system = 'darwin'" | tee -a ${{ runner.temp }}/cross.ini
13371343 echo "cpu_family = '${{ matrix.cpu_family }}'" | tee -a ${{ runner.temp }}/cross.ini
@@ -1408,6 +1414,7 @@ jobs:
14081414 echo "c = 'emcc'" | tee -a ${{ runner.temp }}/cross.ini
14091415 echo "cpp = 'em++'" | tee -a ${{ runner.temp }}/cross.ini
14101416 echo "ar = 'emar'" | tee -a ${{ runner.temp }}/cross.ini
1417+ echo "cmake = 'cmake'" | tee -a ${{ runner.temp }}/cross.ini
14111418 echo "[host_machine]" | tee -a ${{ runner.temp }}/cross.ini
14121419 echo "system = 'emscripten'" | tee -a ${{ runner.temp }}/cross.ini
14131420 echo "cpu_family = 'wasm32'" | tee -a ${{ runner.temp }}/cross.ini
0 commit comments