We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0465126 commit 2de85caCopy full SHA for 2de85ca
1 file changed
tools/build_steps.sh
@@ -139,7 +139,11 @@ function do_build_lib {
139
Linux-aarch64)
140
local bitness=64
141
local target_flags="TARGET=ARMV8"
142
- export CFLAGS="$CFLAGS -march=armv8.6-a+sve"
+ if [ "$MB_ML_LIBC" == "musllinux" ]; then
143
+ export CFLAGS="$CFLAGS -march=armv8.5-a+sve"
144
+ else
145
+ export CFLAGS="$CFLAGS -march=armv8.6-a+sve"
146
+ fi
147
;;
148
Darwin-arm64)
149
0 commit comments