Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make sure Julia doesn't use x87 math. #43978

Merged
merged 13 commits into from
Feb 8, 2022
2 changes: 1 addition & 1 deletion Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ OPENBLAS_TARGET_ARCH:=ARMV7
endif

# on x86 make sure not to use 80 bit math when we want 64 bit math.
ifeq ($(BUILD_ARCH),i386)
ifeq (1,$(ISX86))
oscardssmith marked this conversation as resolved.
Show resolved Hide resolved
JCFLAGS += -mfpmath=sse
endif
# If we are running on aarch64 (e.g. ARMv8 or ARM64), set certain options automatically
Expand Down