File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 59
59
-DSANITIZER_DEBUG=0 ^
60
60
-O3 ^
61
61
-fomit-frame-pointer ^
62
- -msse4.2 ^
62
+ -msse3 ^
63
63
-std=c++14
64
+
65
+ rem "-msse3" used above to ensure continued support of older
66
+ rem cpus (for now), see https://github.com/golang/go/issues/53743.
Original file line number Diff line number Diff line change @@ -59,7 +59,9 @@ if [ "`uname -a | grep Linux`" != "" ]; then
59
59
ARCHCFLAGS=" -m64 -mcpu=power8 -fno-function-sections"
60
60
elif [ " ` uname -a | grep x86_64` " != " " ]; then
61
61
SUFFIX=" linux_amd64"
62
- ARCHCFLAGS=" -m64 -msse4.2"
62
+ # -msse3 used below to ensure continued support of older
63
+ # cpus for now, see https://github.com/golang/go/issues/53743.
64
+ ARCHCFLAGS=" -m64 -msse3"
63
65
OSCFLAGS=" $OSCFLAGS -ffreestanding -Wno-unused-const-variable -Wno-unknown-warning-option"
64
66
elif [ " ` uname -a | grep aarch64` " != " " ]; then
65
67
SUFFIX=" linux_arm64"
You can’t perform that action at this time.
0 commit comments