Skip to content

Commit

Permalink
try to force linux on to clang
Browse files Browse the repository at this point in the history
  • Loading branch information
SamSaffron committed Sep 14, 2024
1 parent 7249c5d commit 655fbea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libexec/platform
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ if [ "${host_platform}" != "${target_platform}" ]; then
configure_flags='--dest-cpu=arm --cross-compiling --dest-os=linux --with-arm-float-abi=hard --with-arm-fpu=neon'
;;
x86_64-*linux*)
CC='x86_64-linux-gnu-gcc'
CXX='x86_64-linux-gnu-g++'
CC_host='gcc'
CXX_host='g++'
CC='clang -arch x86_64'
CXX='clang++ -arch x86_64'
CC_host='clang'
CXX_host='clang++'
STRIP='x86_64-linux-gnu-strip'
configure_flags='--dest-cpu=x86_64 --cross-compiling --dest-os=linux'
;;
Expand Down

0 comments on commit 655fbea

Please sign in to comment.