Skip to content

Commit

Permalink
Don't disable sse2 when building linbox.
Browse files Browse the repository at this point in the history
Note sse2 is always available on x86_64, and on i686 starting with
pentium 4 almost a quarter of a century ago.
  • Loading branch information
tornaria authored and vbraun committed May 4, 2024
1 parent d2c9921 commit 1773c0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/pkgs/linbox/spkg-install.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export CPPFLAGS="$CPPFLAGS -DDISABLE_COMMENTATOR"

# If SAGE_FAT_BINARY is set, disable dependency that be discovered on the building system.
if [ "$SAGE_FAT_BINARY" = yes ]; then
LINBOX_CONFIGURE="--disable-sse --disable-sse2 --disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 --disable-fma --disable-fma4 --disable-avx --disable-avx2 --without-ocl $LINBOX_CONFIGURE"
LINBOX_CONFIGURE="--disable-sse3 --disable-ssse3 --disable-sse41 --disable-sse42 --disable-fma --disable-fma4 --disable-avx --disable-avx2 --without-ocl $LINBOX_CONFIGURE"
fi

# Disable fplll as version 5.x is not supported by linbox <= 1.5.0.
Expand Down

0 comments on commit 1773c0a

Please sign in to comment.