Skip to content

Commit

Permalink
Exit on unrecognized darwin arch hint
Browse files Browse the repository at this point in the history
Not sure if Apple are to introduce another CPU architecture to their device lineup - but they already did it 2 times. When building this on arm64 macOS, before adding the arm64 arch hint, Configure with use64bitall wouldn't exit, but a rather cryptic clang error would be thrown for an unknown arch name, simply because nothing was passed after the -arch flag.
  • Loading branch information
mtsanovv authored and khwilliamson committed Oct 26, 2024
1 parent 93a8029 commit 3d92d62
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hints/darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@ EOM
*** Don't recognize processor, can't specify 64 bit compilation.
EOM
exit 1
;;
esac
for var in ccflags cppflags ld ldflags
Expand Down

0 comments on commit 3d92d62

Please sign in to comment.