Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/sys/arch Pull up following revision(s) (requested by joer...



details:   https://anonhg.NetBSD.org/src/rev/9c9b77edb4f2
branches:  netbsd-7
changeset: 798452:9c9b77edb4f2
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Oct 19 16:11:06 2014 +0000

description:
Pull up following revision(s) (requested by joerg in ticket #152):
        sys/arch/amd64/include/Makefile.inc: revision 1.5
        sys/arch/i386/include/Makefile.inc: revision 1.3
Disable SSE and AVX for kernel modules too.

diffstat:

 sys/arch/amd64/include/Makefile.inc |  5 +++--
 sys/arch/i386/include/Makefile.inc  |  5 ++++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r 2414128df2ab -r 9c9b77edb4f2 sys/arch/amd64/include/Makefile.inc
--- a/sys/arch/amd64/include/Makefile.inc       Sun Oct 19 15:24:07 2014 +0000
+++ b/sys/arch/amd64/include/Makefile.inc       Sun Oct 19 16:11:06 2014 +0000
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile.inc,v 1.4 2012/06/11 15:18:05 chs Exp $
+# $NetBSD: Makefile.inc,v 1.4.14.1 2014/10/19 16:11:06 martin Exp $
 
-CFLAGS+=       -mno-red-zone
+CFLAGS+=       -mno-red-zone -mno-mmx -mno-sse -mno-avx
+CFLAGS+=       -msoft-float
 
 # this should really be !(RUMPKERNEL && PIC)
 .if !defined(RUMPKERNEL)
diff -r 2414128df2ab -r 9c9b77edb4f2 sys/arch/i386/include/Makefile.inc
--- a/sys/arch/i386/include/Makefile.inc        Sun Oct 19 15:24:07 2014 +0000
+++ b/sys/arch/i386/include/Makefile.inc        Sun Oct 19 16:11:06 2014 +0000
@@ -1,4 +1,7 @@
-# $NetBSD: Makefile.inc,v 1.2 2014/05/24 18:39:04 jakllsch Exp $
+# $NetBSD: Makefile.inc,v 1.2.2.1 2014/10/19 16:11:06 martin Exp $
+
+CFLAGS+=       -msoft-float
+CFLAGS+=       -mno-mmx -mno-sse -mno-avx
 
 # this should really be !(RUMPKERNEL && PIC)
 .if !defined(RUMPKERNEL)



Home | Main Index | Thread Index | Old Index