File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -120,11 +120,9 @@ jobs:
120120 android_abi : ${{ matrix.config.android_abi }}
121121 cross_file : ${{ matrix.config.cross_file }}
122122 run : |
123- wget https://dl.google.com/android/repository/android-ndk-${ndk_version}-linux.zip
124- mkdir ${ndk_path}
123+ wget -q https://dl.google.com/android/repository/android-ndk-${ndk_version}-linux.zip
124+ mkdir -p ${ndk_path}
125125 unzip -d ${ndk_path} android-ndk-${ndk_version}-linux.zip
126- # Move the directory
127- mv ${ndk_path}/* ${ndk_path}
128126 ls -l ${ndk_path}
129127 echo "set(CMAKE_CROSSCOMPILING_EMULATOR '${qemu};-L;${ndk_path}/toolchains/llvm/prebuilt/linux-x86_64/sysroot/usr/')" >> ${cross_file}
130128
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ set(CMAKE_SYSTEM_NAME Linux)
55set (CMAKE_SYSTEM_PROCESSOR mips)
66
77set (CMAKE_C_COMPILER mips-linux-gnu-gcc)
8- set (CMAKE_CXX_COMPILER mips-linux-gnu-g++)
8+ set (CMAKE_ASM_COMPILER mips-linux-gnu-gcc)
9+ set (CMAKE_CROSS_COMPILING 1)
910
1011set (CMAKE_SYSROOT /usr/mips-linux-gnu/usr/)
1112
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ set(CMAKE_SYSTEM_NAME Linux)
55set (CMAKE_SYSTEM_PROCESSOR ppc64)
66
77set (CMAKE_C_COMPILER powerpc64-linux-gnu-gcc)
8- set (CMAKE_CXX_COMPILER powerpc64-linux-gnu-g++)
8+ set (CMAKE_ASM_COMPILER powerpc64-linux-gnu-gcc)
9+ set (CMAKE_CROSS_COMPILING 1)
910
1011set (CMAKE_SYSROOT /usr/powerpc64-linux-gnu/usr)
1112
You can’t perform that action at this time.
0 commit comments