Makefile.rump revision 1.102
1#	$NetBSD: Makefile.rump,v 1.102 2014/12/01 23:08:15 pooka Exp $
2#
3
4.if !defined(_RUMP_MK)
5_RUMP_MK= #defined
6
7WARNS?=		3	# XXX: src/sys won't compile with -Wsign-compare yet
8NOLINT=		# kernel code
9
10.include <bsd.own.mk>
11
12# Use NetBSD kernel ABI by default on x86 archs.  Performance-related
13# compile-time options may override this at a later date.
14.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64")
15_RUMP_NATIVEABI= yes
16CPPFLAGS+=	-D_RUMP_NATIVE_ABI
17.else
18_RUMP_NATIVEABI= no
19CPPFLAGS:=	-I${RUMPTOP}/include ${CPPFLAGS}
20CPPFLAGS+=	-D_RUMPKERNEL -I${RUMPTOP}/librump/rumpkern
21.endif
22
23# Define baseline cpu for mips ports, required for
24# rumpcomp_sync_icache() hypercall.
25.if !empty(MACHINE_ARCH:Mmips*)
26.if !empty(MACHINE_ARCH:Mmips64*)
27CPPFLAGS+=	-DMIPS64=1
28.else
29CPPFLAGS+=	-DMIPS1=1
30.endif
31.endif
32
33CPPFLAGS+=	-DMAXUSERS=32
34CPPFLAGS+=	-DCOMPAT_50=1 -DCOMPAT_60=1
35
36CPPFLAGS+=	-nostdinc
37CFLAGS+=	-ffreestanding -fno-strict-aliasing
38
39CWARNFLAGS+=	-Wno-format-zero-length -Wno-pointer-sign
40CPPFLAGS+=	-D_KERNEL -DMULTIPROCESSOR -D_MODULE -DMODULAR
41CPPFLAGS+=	-DDEBUGPRINT
42CPPFLAGS+=	-I${.CURDIR} -I.
43CPPFLAGS+=	-I${RUMPTOP}/../../common/include
44CPPFLAGS+=	-I${RUMPTOP}/include
45CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern/opt
46
47.ifdef NEED_ISYSTEM
48CPPFLAGS+=	-isystem ${RUMPTOP}/../arch
49CPPFLAGS+=	-isystem ${RUMPTOP}/..
50.else
51CPPFLAGS+=	-I${RUMPTOP}/../arch
52CPPFLAGS+=	-I${RUMPTOP}/..
53.endif
54
55RUMP_LDSCRIPT?=	GNU
56.if ${RUMP_LDSCRIPT} != "no"
57# my ld or yours?
58.if ${RUMP_LDSCRIPT} == "sun"
59LDFLAGS+=	-Wl,-M ${RUMPTOP}/ldscript_sun.rump
60SRCS+=		linksyms_sun.c
61.PATH:		${RUMPTOP}
62.elif ${RUMP_LDSCRIPT} == "GNU"
63LDFLAGS+=	-Wl,-T,${RUMPTOP}/ldscript.rump
64.elif ${RUMP_LDSCRIPT} == "ctor"
65CPPFLAGS+=	-DRUMP_USE_CTOR
66.else
67.error Unknown ldscript ${RUMP_LDSCRIPT}
68.endif
69.endif
70
71.if defined(RUMP_CURLWP)
72.if   ${RUMP_CURLWP} == "hypercall"
73CPPFLAGS+=	-DRUMP_CURLWP=RUMP_CURLWP_HYPERCALL
74.elif ${RUMP_CURLWP} == "__thread"
75CPPFLAGS+=	-DRUMP_CURLWP=RUMP_CURLWP___THREAD
76.elif ${RUMP_CURLWP} == "register"
77CPPFLAGS+=	-DRUMP_CURLWP=RUMP_CURLWP_REGISTER
78.else
79.error Unsupported curlwp scheme: ${RUMP_CURLWP}
80.endif
81.endif
82
83RUMP_DIAGNOSTIC?=yes
84.if ${RUMP_DIAGNOSTIC} == "yes"
85CPPFLAGS+=	-DDIAGNOSTIC
86.endif
87
88.ifdef RUMP_DEBUG
89CPPFLAGS+=	-DDEBUG
90.endif
91
92.ifdef RUMP_LOCKDEBUG
93CPPFLAGS+=	-DLOCKDEBUG
94.endif
95
96RUMP_KTRACE?=yes
97.if ${RUMP_KTRACE} == "yes"
98CPPFLAGS+=	-DKTRACE
99.endif
100
101# kernel libs should not get linked against libc
102# XXX: actually, we would like to enable this but cannot, since it
103# also leaves out libgcc, it causes problems on some platforms.
104# revisit some day.
105#LDFLAGS+=	-nodefaultlibs
106
107# make sure __NetBSD__ gets defined (for builds on non-NetBSD)
108# also, give those builds a way to undef the local compiler's macros
109CPPFLAGS+=	-D__NetBSD__ ${RUMPKERN_UNDEF}
110
111RUMPKERNEL=	This is NetBSD and I am the rump.  Good evening.
112
113# workaround: evbppc is not a well-defined arch
114.if (${MACHINE} == "evbppc")
115CPPFLAGS+=	-DPPC_OEA
116.endif
117
118# If this file changes, we need a full rebuild
119DPSRCS+=	${RUMPTOP}/Makefile.rump
120
121#
122# Support for component-specific hypercalls
123#
124
125# no easy way to get WARNS out of bsd.sys.mk
126RUMPCOMP_USER_WARNFLAGS=	-Wall -Wextra -Wno-unused-parameter
127RUMPCOMP_USER_WARNFLAGS+=	-Wstrict-prototypes -Wmissing-prototypes
128
129.ifdef RUMPCOMP_USER_SRCS && !defined(RUMPKERN_ONLY)
130.if empty(DESTDIR)
131DESTDIR=/
132.endif
133BUILDRUMP_CPPFLAGS ?= -isysroot ${DESTDIR}
134RUMPCOMP_USER_WERROR = ${${_NOWERROR} == "no" :?-Werror:}
135.for rcusrc in ${RUMPCOMP_USER_SRCS:R}
136${rcusrc}.d: ${rcusrc}.c
137	${_MKTARGET_CREATE}
138	${MKDEP} -f ${.TARGET} -- ${MKDEPFLAGS} ${BUILDRUMP_CPPFLAGS} ${RUMPCOMP_USER_CPPFLAGS} ${.ALLSRC:O:u:M*${rcusrc}.c}
139
140${rcusrc}.o: ${rcusrc}.c
141	${_MKTARGET_COMPILE}
142	${CC} -o ${.TARGET} ${DBG} ${CWARNFLAGS} ${RUMPCOMP_USER_WERROR} ${RUMPCOMP_USER_WARNFLAGS} ${BUILDRUMP_CPPFLAGS} ${BUILDRUMP_CFLAGS} ${RUMPCOMP_USER_CPPFLAGS} ${RUMPCOMP_USER_CFLAGS} -c ${.ALLSRC:O:u:M*${rcusrc}.c}
143
144${rcusrc}.pico: ${rcusrc}.c
145	${_MKTARGET_COMPILE}
146	${CC} -o ${.TARGET} -fPIC -DPIC ${DBG} ${CWARNFLAGS} ${RUMPCOMP_USER_WERROR} ${RUMPCOMP_USER_WARNFLAGS} ${BUILDRUMP_CPPFLAGS} ${BUILDRUMP_CFLAGS} ${RUMPCOMP_USER_CPPFLAGS} ${RUMPCOMP_USER_CFLAGS} -c ${.ALLSRC:O:u:M*${rcusrc}.c}
147
148${rcusrc}.po: ${rcusrc}.c
149	${_MKTARGET_COMPILE}
150	${CC} -o ${.TARGET} ${PROFFLAGS} -pg ${DBG} ${CWARNFLAGS} ${RUMPCOMP_USER_WERROR} ${RUMPCOMP_USER_WARNFLAGS} ${BUILDRUMP_CPPFLAGS} ${BUILDRUMP_CFLAGS} ${RUMPCOMP_USER_CPPFLAGS} ${RUMPCOMP_USER_CFLAGS} -c ${.ALLSRC:O:u:M*${rcusrc}.c}
151
152RUMPOBJ_NORENAME+=${rcusrc}.o ${rcusrc}.pico ${rcusrc}.po
153SRCS+=${rcusrc}.c
154.endfor
155.endif
156
157#
158# Rename library symbols before use.  If a symbol does not already belong
159# to a rump namespace ("rump" or "RUMP"), prefix it with "rumpns".  This
160# avoids accidentally linking any kernel symbol against host platform
161# libraries.  The only non-renamed symbols are linkset delimiters and
162# the GOT, which are more a property of the compiler than the kernel.
163#
164# Some toolchains generate unresolved symbols which are supposed to be
165# satisfied by the toolchain itself when the program is linked.
166# Unfortunately, we do not know which of the symbols are generated by
167# the toolchain.  Worse, they vary from platform to platform and
168# toolchain to toolchain.  The good news, however, is that this will
169# be detected by a compile-time failure, so we can fairly easily manage
170# a quirktable here.
171#
172# We also allow calling ourselves externally with e.g.:
173# make -f /sys/rump/Makefile.rump RUMP_SYMREN=ffs.kobj
174#
175.if ${MACHINE_CPU} == "mips"
176_SYMQUIRK='|_gp_disp'
177.elif ${MACHINE_CPU} == "hppa"
178_SYMQUIRK='|\$$\$$'
179.elif ${MACHINE_ARCH} == "powerpc64"
180_SYMQUIRK="|PF_funcs"
181.endif
182
183#
184# Prefix quirks.  At least one toolchain generates global
185# symbols with prefixes which really need to remain as prefixes
186# (i.e. the '.' on the front of some ppc64 globals).  The
187# way to know if you have the problem is if you get later
188# complaints about symbols like 'rumpns_XrumpBLAH' or 'XrumpBLAH';
189# the 'X' part was added by the toolchain and will need to
190# be mentioned here.
191# 
192.if ${MACHINE_ARCH} == "powerpc64"
193_PQ="\.?"
194.else
195_PQ=
196.endif
197
198rump_symren: __archivebuild
199.if !defined(RUMP_SYMREN)
200	@echo "Must supply RUMP_SYMREN for target rump_symren"
201	@false
202.endif
203
204# if we are called from lib build (RUMP_SYMREN is not specified),
205# build the arrrrchive.  otherwise just rename symbols.
206__archivebuild: .USE
207.if defined(RUMP_SYMREN) && defined(RUMPTOP)
208	@echo "ERROR: RUMP_SYMREN can only be used standalone"
209	@false
210.endif
211.if defined(RUMP_SYMREN)
212	${_MKMSG} " symbol rename " ${RUMP_SYMREN}
213.else
214	${_MKTARGET_BUILD}
215	rm -f ${.TARGET}
216.endif
217	for renameobj in ${RUMP_SYMREN:U${.ALLSRC:C/(${RUMPOBJ_NORENAME:ts|})//g}}; do \
218		${NM} -go $${renameobj} | ${TOOL_AWK} ' \
219		    $$NF!~/^'${_PQ}'(rump|RUMP|__|_GLOBAL_OFFSET_TABLE'${_SYMQUIRK}'${RUMP_SYM_NORENAME:D|${RUMP_SYM_NORENAME}})/ \
220		      {s=$$NF;sub(/^'${_PQ}'/, "&rumpns_", s); print $$NF, s}'\
221		    | sort | uniq  > renametab.$${renameobj}; \
222		${OBJCOPY} --preserve-dates --redefine-syms \
223		    renametab.$${renameobj} $${renameobj}; \
224		rm -f renametab.$${renameobj}; \
225	done
226.if !defined(RUMP_SYMREN)
227	${AR} ${_ARFL} ${.TARGET} \
228	    `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
229.endif
230
231_BSD_IOCONF_MK_USER_=1
232.include <bsd.ioconf.mk>
233
234.-include "${NETBSDSRCDIR}/sys/arch/${MACHINE_CPU}/include/Makefile.inc"
235.-include "${NETBSDSRCDIR}/sys/arch/${MACHINE}/include/Makefile.inc"
236
237.endif # _RUMP_MK
238