Skip to content

Commit

Permalink
Update create-deb.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfortner authored Dec 10, 2024
1 parent abcefe7 commit 19d0c63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ for target in ${targets[@]}; do
sed -i "s/NOT _x86 AND NOT _x86_64/true/g" ../CMakeLists.txt
# warning, BOX64 cmakelists enables crypto with the ARM_DYNAREC options, it was purly by luck that no crypto opts were used which would be a problem since the Pi4 doesn't have them
if [[ $target == "ANDROID" ]]; then
cmake .. -DBAD_SIGNAL=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc-11 -DARM_DYNAREC=ON -DBOX32=1 -BOX32_BINFMT=1 || error "Failed to run cmake."
cmake .. -DBAD_SIGNAL=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc-11 -DARM_DYNAREC=ON -DBOX32=1 -DBOX32_BINFMT=1 || error "Failed to run cmake."
else
cmake .. -D$target=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc-11 -DARM_DYNAREC=ON -DBOX32=1 -BOX32_BINFMT=1 || error "Failed to run cmake."
cmake .. -D$target=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc-11 -DARM_DYNAREC=ON -DBOX32=1 -DBOX32_BINFMT=1 || error "Failed to run cmake."
fi
make -j8 || error "Failed to run make."

Expand Down

0 comments on commit 19d0c63

Please sign in to comment.