View | Details | Raw Unified | Return to bug 194473 | Differences between
and this patch

Collapse All | Expand All

(-)sys/conf/kern.mk (working copy) (-2 / +2 lines)
Lines 85-94 Link Here
85
# For sparc64 we want the medany code model so modules may be located
85
# For sparc64 we want the medany code model so modules may be located
86
# anywhere in the 64-bit address space.  We also tell GCC to use floating
86
# anywhere in the 64-bit address space.  We also tell GCC to use floating
87
# point emulation.  This avoids using floating point registers for integer
87
# point emulation.  This avoids using floating point registers for integer
88
# operations which it has a tendency to do.
88
# operations which it has a tendency to do. removed -- -fno-dwarf2-cfi-asm
89
#
89
#
90
.if ${MACHINE_CPUARCH} == "sparc64"
90
.if ${MACHINE_CPUARCH} == "sparc64"
91
CFLAGS.clang+= -mcmodel=large -fno-dwarf2-cfi-asm
91
CFLAGS.clang+= -mcmodel=large -fno-dwarf2-cfi-asm -no-integrated-as 
92
CFLAGS.gcc+=   -mcmodel=medany -msoft-float
92
CFLAGS.gcc+=   -mcmodel=medany -msoft-float
93
INLINE_LIMIT?= 15000
93
INLINE_LIMIT?= 15000
94
.endif
94
.endif
(-)sys/modules/cxgb/cxgb/Makefile (working copy) (-1 / +1 lines)
Lines 11-16 Link Here
11
SRCS+= opt_inet.h opt_inet6.h opt_sched.h
11
SRCS+= opt_inet.h opt_inet6.h opt_sched.h
12
SRCS+= uipc_mvec.c
12
SRCS+= uipc_mvec.c
13
13
14
CFLAGS+= -g -DDEFAULT_JUMBO -I${CXGB}
14
CFLAGS+= -DDEFAULT_JUMBO -I${CXGB}
15
15
16
.include <bsd.kmod.mk>
16
.include <bsd.kmod.mk>
(-)sys/modules/cxgb/cxgb_t3fw/Makefile (working copy) (-1 / +1 lines)
Lines 5-10 Link Here
5
5
6
KMOD= cxgb_t3fw
6
KMOD= cxgb_t3fw
7
SRCS+= cxgb_t3fw.c
7
SRCS+= cxgb_t3fw.c
8
CFLAGS+= -g -I${CXGB}
8
CFLAGS+= -I${CXGB}
9
9
10
.include <bsd.kmod.mk>
10
.include <bsd.kmod.mk>
(-)sys/sparc64/conf/GENERIC (working copy) (-1 / +2 lines)
Lines 21-27 Link Here
21
cpu            SUN4U
21
cpu            SUN4U
22
ident          GENERIC
22
ident          GENERIC
23
23
24
makeoptions    DEBUG=-g                # Build kernel with gdb(1) debug symbols
24
#makeoptions   DEBUG=-g                # Build kernel with gdb(1) debug symbols
25
nomakeoptions      DEBUG
25
26
26
# Platforms supported
27
# Platforms supported
27
#      At this time all platforms are supported, as-is.
28
#      At this time all platforms are supported, as-is.

Return to bug 194473