mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 21:10:07 +00:00
b7d09f0d63
There is a configure test for assembler support for -mtune=i686. This option was added in binutils 2.18 so the test is obsolete; this patch removes it. Tested for x86 (testsuite, and that installed shared libraries are unchanged by the patch). * sysdeps/i386/configure.ac (libc_cv_as_i686): Remove configure test. * sysdeps/i386/configure: Regenerated. * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]: Make code unconditional.
15 lines
378 B
Makefile
15 lines
378 B
Makefile
# So that we can test __m128's alignment
|
|
stack-align-test-flags += -msse
|
|
|
|
CFLAGS-.o += -Wa,-mtune=i686
|
|
CFLAGS-.os += -Wa,-mtune=i686
|
|
CFLAGS-.op += -Wa,-mtune=i686
|
|
CFLAGS-.og += -Wa,-mtune=i686
|
|
CFLAGS-.oS += -Wa,-mtune=i686
|
|
|
|
ASFLAGS-.o += -Wa,-mtune=i686
|
|
ASFLAGS-.os += -Wa,-mtune=i686
|
|
ASFLAGS-.op += -Wa,-mtune=i686
|
|
ASFLAGS-.og += -Wa,-mtune=i686
|
|
ASFLAGS-.oS += -Wa,-mtune=i686
|