diff options
author | dim <dim@FreeBSD.org> | 2011-01-05 21:23:26 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-01-05 21:23:26 +0000 |
commit | a7e43fe5f9923142d069bb3decfd9e8ee2799cc4 (patch) | |
tree | a77d836dd85d1f4f8c11c8b9633df62478a89315 | |
parent | b0c3c2ea920813646c634a86c630ecdcc9d74591 (diff) | |
download | FreeBSD-src-a7e43fe5f9923142d069bb3decfd9e8ee2799cc4.zip FreeBSD-src-a7e43fe5f9923142d069bb3decfd9e8ee2799cc4.tar.gz |
Sort -mno-(mmx|3dnow|sse|sse2|sse3) options consistently throughout the
tree.
Submitted by: arundel
-rw-r--r-- | libexec/rtld-elf/amd64/Makefile.inc | 2 | ||||
-rw-r--r-- | libexec/rtld-elf/i386/Makefile.inc | 2 | ||||
-rw-r--r-- | sys/conf/kern.mk | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rtld-elf/amd64/Makefile.inc b/libexec/rtld-elf/amd64/Makefile.inc index 7d68611..7528dbe 100644 --- a/libexec/rtld-elf/amd64/Makefile.inc +++ b/libexec/rtld-elf/amd64/Makefile.inc @@ -1,6 +1,6 @@ # $FreeBSD$ -CFLAGS+= -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float +CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float # Uncomment this to build the dynamic linker as an executable instead # of a shared library: #LDSCRIPT= ${.CURDIR}/${MACHINE_CPUARCH}/elf_rtld.x diff --git a/libexec/rtld-elf/i386/Makefile.inc b/libexec/rtld-elf/i386/Makefile.inc index 7d68611..7528dbe 100644 --- a/libexec/rtld-elf/i386/Makefile.inc +++ b/libexec/rtld-elf/i386/Makefile.inc @@ -1,6 +1,6 @@ # $FreeBSD$ -CFLAGS+= -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow -msoft-float +CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float # Uncomment this to build the dynamic linker as an executable instead # of a shared library: #LDSCRIPT= ${.CURDIR}/${MACHINE_CPUARCH}/elf_rtld.x diff --git a/sys/conf/kern.mk b/sys/conf/kern.mk index 4d8636c..61f814d 100644 --- a/sys/conf/kern.mk +++ b/sys/conf/kern.mk @@ -66,7 +66,7 @@ INLINE_LIMIT?= 15000 # .if ${MACHINE_CPUARCH} == "amd64" CFLAGS+= -mcmodel=kernel -mno-red-zone \ - -mfpmath=387 -mno-sse -mno-sse2 -mno-sse3 -mno-mmx -mno-3dnow \ + -mfpmath=387 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 \ -msoft-float -fno-asynchronous-unwind-tables INLINE_LIMIT?= 8000 .endif |