1 | # $Id: Makefile.kmk 62534 2016-07-22 19:30:22Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # The Recompiler Sub-Makefile.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2016 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 |
|
---|
19 | SUB_DEPTH = ../..
|
---|
20 | include $(KBUILD_PATH)/subheader.kmk
|
---|
21 |
|
---|
22 | #
|
---|
23 | # Globals
|
---|
24 | #
|
---|
25 | VBOX_PATH_RECOMPILER_SRC := $(PATH_SUB_CURRENT)
|
---|
26 | # Workaround for darwin hell.
|
---|
27 | ifeq ($(KBUILD_TARGET),darwin)
|
---|
28 | VBOX_WITHOUT_REM_LDR_CYCLE := 1
|
---|
29 | endif
|
---|
30 | ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.amd64)
|
---|
31 | VBOX_USE_MINGWW64 = 1
|
---|
32 | endif
|
---|
33 |
|
---|
34 |
|
---|
35 | #
|
---|
36 | # The primary REM module definition.
|
---|
37 | #
|
---|
38 | # This is extended by one of the VBoxREM* modules below. Currently, this
|
---|
39 | # isn't done by inheritance because of some obscure bug wrt inheriting from
|
---|
40 | # unused targets that I'm not going to fix now.
|
---|
41 | #
|
---|
42 | ifneq ($(KBUILD_TARGET),win)
|
---|
43 | VBoxRemPrimary_TEMPLATE = VBOXR3NP
|
---|
44 | # workaround the regparm bug in gcc <= 3.3
|
---|
45 | VBoxRemPrimary_DEFS = $(if $(VBOX_GCC_BUGGY_REGPARM),GCC_WITH_BUGGY_REGPARM,)
|
---|
46 | else
|
---|
47 | VBoxRemPrimary_TEMPLATE = DUMMY
|
---|
48 | VBoxRemPrimary_TOOL.win.x86 = MINGW32
|
---|
49 | ifdef VBOX_USE_MINGWW64
|
---|
50 | VBoxRemPrimary_TOOL.win.amd64 = MINGWW64
|
---|
51 | else
|
---|
52 | VBoxRemPrimary_TOOL.win.amd64 = XGCCAMD64LINUX
|
---|
53 | endif
|
---|
54 | VBoxRemPrimary_SDKS.win.x86 = W32API
|
---|
55 | VBoxRemPrimary_ASFLAGS = -x assembler-with-cpp
|
---|
56 | VBoxRemPrimary_CFLAGS = -Wall -g -fno-omit-frame-pointer -fno-strict-aliasing -Wno-shadow
|
---|
57 | VBoxRemPrimary_CFLAGS.debug = -O0
|
---|
58 | VBoxRemPrimary_CFLAGS.release += -fno-gcse -O2
|
---|
59 | VBoxRemPrimary_CFLAGS.profile = $(VBoxRemPrimary_CFLAGS.release)
|
---|
60 | VBoxRemPrimary_DEFS += IN_RING3 $(ARCH_BITS_DEFS)
|
---|
61 | # Workaround the regparm bug in gcc <= 3.3.
|
---|
62 | VBoxRemPrimary_DEFS.win.x86 += GCC_WITH_BUGGY_REGPARM
|
---|
63 | # Missing fpclassify. Is there a better define or flag for this?
|
---|
64 | VBoxRemPrimary_DEFS.solaris += __C99FEATURES__
|
---|
65 | endif # win
|
---|
66 | VBoxRemPrimary_DEFS += IN_REM_R3 REM_INCLUDE_CPU_H NEED_CPU_H
|
---|
67 | #VBoxRemPrimary_DEFS += REM_PHYS_ADDR_IN_TLB
|
---|
68 | #VBoxRemPrimary_DEFS += DEBUG_ALL_LOGGING DEBUG_DISAS DEBUG_PCALL CONFIG_DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB # Enables huge amounts of debug logging.
|
---|
69 | #VBoxRemPrimary_DEFS += DEBUG_DISAS DEBUG_PCALL CONFIG_DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB # Enables huge amounts of debug logging.
|
---|
70 | ifdef IEM_VERIFICATION_MODE
|
---|
71 | VBoxRemPrimary_DEFS += IEM_VERIFICATION_MODE
|
---|
72 | endif
|
---|
73 | ifdef VBOX_WITH_NEW_APIC
|
---|
74 | VBoxRemPrimary_DEFS += VBOX_WITH_NEW_APIC
|
---|
75 | endif
|
---|
76 | ifdef VBOX_WITH_RAW_MODE
|
---|
77 | VBoxRemPrimary_DEFS += VBOX_WITH_RAW_MODE
|
---|
78 | endif
|
---|
79 | ifdef VBOX_WITH_RAW_RING1
|
---|
80 | VBoxRemPrimary_DEFS += VBOX_WITH_RAW_RING1
|
---|
81 | endif
|
---|
82 | VBoxRemPrimary_DEFS.linux = _GNU_SOURCE
|
---|
83 | ifdef VBOX_SOLARIS_10
|
---|
84 | VBoxRemPrimary_DEFS.solaris = CONFIG_SOLARIS_VERSION=10
|
---|
85 | else
|
---|
86 | VBoxRemPrimary_DEFS.solaris = CONFIG_SOLARIS_VERSION=11
|
---|
87 | endif
|
---|
88 | VBoxRemPrimary_DEFS.freebsd += _BSD
|
---|
89 | VBoxRemPrimary_DEFS.amd64 += __x86_64__
|
---|
90 | VBoxRemPrimary_DEFS.x86 += __i386__
|
---|
91 |
|
---|
92 | VBoxRemPrimary_INCS = \
|
---|
93 | Sun \
|
---|
94 | target-i386 \
|
---|
95 | tcg \
|
---|
96 | fpu \
|
---|
97 | $(VBoxRemPrimary_0_OUTDIR) \
|
---|
98 | $(PATH_ROOT)/src/VBox/VMM/include \
|
---|
99 | tcg/i386 \
|
---|
100 | .
|
---|
101 | ifn1of ($(VBoxRemPrimary_DEFS),DEBUG_TMP_LOGGING)
|
---|
102 | VBoxRemPrimary_DEFS += LOG_USE_C99
|
---|
103 | VBoxRemPrimary_INCS <= \
|
---|
104 | Sun/crt
|
---|
105 | endif
|
---|
106 |
|
---|
107 | VBoxRemPrimary_SOURCES = \
|
---|
108 | VBoxRecompiler.c \
|
---|
109 | cpu-exec.c \
|
---|
110 | exec.c \
|
---|
111 | translate-all.c \
|
---|
112 | host-utils.c \
|
---|
113 | cutils.c \
|
---|
114 | tcg-runtime.c \
|
---|
115 | tcg/tcg.c \
|
---|
116 | tcg/tcg-dyngen.c \
|
---|
117 | fpu/softfloat-native.c \
|
---|
118 | target-i386/op_helper.c \
|
---|
119 | target-i386/helper.c \
|
---|
120 | target-i386/translate.c
|
---|
121 | VBoxRemPrimary_SOURCES.debug += \
|
---|
122 | Sun/testmath.c
|
---|
123 | VBoxRemPrimary_SOURCES.win = $(VBoxREMImp_0_OUTDIR)/VBoxREMRes.o
|
---|
124 | VBoxRemPrimary_SOURCES.win.x86 = $(VBoxREMImp_0_OUTDIR)/VBoxREMWin.def
|
---|
125 | ifdef VBOX_USE_MINGWW64
|
---|
126 | if 0 # exporting all helps when windbg pops up on crashes
|
---|
127 | VBoxRemPrimary_SOURCES.win.amd64 = $(VBoxREMImp_0_OUTDIR)/VBoxREMWin.def
|
---|
128 | else
|
---|
129 | VBoxRemPrimary_LDFLAGS.win.amd64 = --export-all
|
---|
130 | endif
|
---|
131 | endif
|
---|
132 |
|
---|
133 | ifndef VBOX_USE_MINGWW64
|
---|
134 | VBoxRemPrimary_LIBS = \
|
---|
135 | $(LIB_VMM) \
|
---|
136 | $(LIB_RUNTIME)
|
---|
137 | else
|
---|
138 | VBoxRemPrimary_LIBS = \
|
---|
139 | $(VBoxRemPrimary_0_OUTDIR)/VBoxVMMImp.a \
|
---|
140 | $(VBoxRemPrimary_0_OUTDIR)/VBoxRTImp.a
|
---|
141 | VBoxRemPrimary_CLEAN = \
|
---|
142 | $(VBoxRemPrimary_0_OUTDIR)/VBoxVMMImp.a \
|
---|
143 | $(VBoxRemPrimary_0_OUTDIR)/VBoxVMMImp.def \
|
---|
144 | $(VBoxRemPrimary_0_OUTDIR)/VBoxRTImp.a \
|
---|
145 | $(VBoxRemPrimary_0_OUTDIR)/VBoxRTImp.def
|
---|
146 | endif
|
---|
147 |
|
---|
148 | VBoxRemPrimary_LDFLAGS.solaris = -mimpure-text
|
---|
149 | if defined(VBOX_WITH_HARDENING) && "$(KBUILD_TARGET)" == "win"
|
---|
150 | VBoxRemPrimary_POST_CMDS = \
|
---|
151 | $(VBOX_VCC_EDITBIN) /LargeAddressAware /DynamicBase /NxCompat /Release /IntegrityCheck \
|
---|
152 | /Version:$(VBOX_VERSION_MAJOR)0$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD) "$(out)" \
|
---|
153 | $$(NLTAB)$(VBOX_SIGN_IMAGE_CMDS)
|
---|
154 | else
|
---|
155 | VBoxRemPrimary_POST_CMDS = $(VBOX_SIGN_IMAGE_CMDS)
|
---|
156 | endif
|
---|
157 |
|
---|
158 |
|
---|
159 | if "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.amd64" && !defined(VBOX_USE_MINGWW64)
|
---|
160 | #
|
---|
161 | # VBoxREM2/VBoxRemPrimary - Currently only used by 64-bit Windows.
|
---|
162 | # (e_powl-xxx.S doesn't fit in IPRT because it requires GAS and is LGPL.)
|
---|
163 | #
|
---|
164 | SYSMODS += VBoxRemPrimary
|
---|
165 | VBoxRemPrimary_TEMPLATE = VBOXNOCRTGAS
|
---|
166 | VBoxRemPrimary_NAME = VBoxREM2
|
---|
167 | VBoxRemPrimary_DEFS += LOG_USE_C99 $(ARCH_BITS_DEFS)
|
---|
168 | VBoxRemPrimary_SOURCES += \
|
---|
169 | Sun/e_powl-$(KBUILD_TARGET_ARCH).S
|
---|
170 | VBoxRemPrimary_INCS += \
|
---|
171 | Sun/crt
|
---|
172 | VBoxRemPrimary_SYSSUFF = .rel
|
---|
173 | VBoxRemPrimary_LIBS = \
|
---|
174 | $(PATH_STAGE_LIB)/RuntimeR3NoCRTGCC$(VBOX_SUFF_LIB)
|
---|
175 | VBoxRemPrimary_POST_CMDS = $(NO_SUCH_VARIABLE)
|
---|
176 | VBOX_REM_WRAPPER = 2
|
---|
177 |
|
---|
178 | else if "$(KBUILD_TARGET_ARCH)" == "x86" && defined(VBOX_WITH_64_BITS_GUESTS)
|
---|
179 | #
|
---|
180 | # For 32-bit targets when enabled 64-bit guests we build 2 REM DLLs:
|
---|
181 | # with 64-bit support (slow and buggy at the moment) VBOXREM64
|
---|
182 | # only 32-bit support (faster, stable, but not suitable for 64-bit guests) VBOXREM32
|
---|
183 | # During the runtime, we load appropriate library from VBOXREM, depending on guest settings.
|
---|
184 | # 64-bit targets have 64-bit enabled REM by default, so is not part of this mess
|
---|
185 | #
|
---|
186 |
|
---|
187 | #
|
---|
188 | # VBoxREM32/VBoxRemPrimary
|
---|
189 | #
|
---|
190 | DLLS += VBoxRemPrimary
|
---|
191 | VBoxRemPrimary_NAME = VBoxREM32
|
---|
192 | VBoxRemPrimary_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM32.dylib
|
---|
193 | VBOX_REM_WRAPPER = 32
|
---|
194 |
|
---|
195 | #
|
---|
196 | # VBoxREM64
|
---|
197 | #
|
---|
198 | DLLS += VBoxREM64
|
---|
199 | VBoxREM64_EXTENDS = VBoxRemPrimary
|
---|
200 | VBoxREM64_EXTENDS_BY = appending
|
---|
201 | VBoxREM64_NAME = VBoxREM64
|
---|
202 | VBoxREM64_DEFS = VBOX_ENABLE_VBOXREM64
|
---|
203 | VBoxREM64_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM64.dylib
|
---|
204 |
|
---|
205 | else
|
---|
206 | #
|
---|
207 | # VBoxREM/VBoxRemPrimary - Normal.
|
---|
208 | #
|
---|
209 | DLLS += VBoxRemPrimary
|
---|
210 | VBoxRemPrimary_NAME = VBoxREM
|
---|
211 | VBoxRemPrimary_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM3.dylib
|
---|
212 |
|
---|
213 | ifdef VBOX_USE_MINGWW64
|
---|
214 | # GNU ld (rubenvb-4.5.4) 2.22.52.20120716 doesn't fix up rip relative
|
---|
215 | # addressing in the import libraries generated by microsoft link.exe. So, we
|
---|
216 | # have to regenerate these.
|
---|
217 | # Note! The chdir to the output directory is because dlltool writes temporary files to the current directory.
|
---|
218 | $$(VBoxRemPrimary_0_OUTDIR)/VBoxVMMImp.a \
|
---|
219 | $$(VBoxRemPrimary_0_OUTDIR)/VBoxRTImp.a : $$(VBoxRemPrimary_0_OUTDIR)/$$(notdir $$(basename $$@)).def
|
---|
220 | $(REDIRECT) -C "$(dir $@)" -- $(TOOL_MINGWW64_DLLTOOL) \
|
---|
221 | --output-lib "$@" \
|
---|
222 | --input-def "$<" \
|
---|
223 | --dllname "$(patsubst %Imp.a,%.dll,$(notdir $@))"
|
---|
224 |
|
---|
225 | $$(VBoxRemPrimary_0_OUTDIR)/VBoxVMMImp.def \
|
---|
226 | $$(VBoxRemPrimary_0_OUTDIR)/VBoxRTImp.def : \
|
---|
227 | $(PATH_STAGE_BIN)/$$(patsubst %Imp.def,%.dll,$$(notdir $$@)) \
|
---|
228 | | $$(dir $$@)
|
---|
229 | $(APPEND) -nt $@ "LIBRARY $(notdir $<)" "EXPORTS"
|
---|
230 | $(TOOL_$(VBOX_VCC_TOOL)_DUMPBIN) /EXPORTS "$<" \
|
---|
231 | | $(SED) -e '/ = /!d' \
|
---|
232 | -e 's/^.* \([^ ][^ ]*\) = .*$(DOLLAR)/ \"\1\"/' \
|
---|
233 | --append $@
|
---|
234 | endif # VBOX_USE_MINGWW64
|
---|
235 |
|
---|
236 | endif
|
---|
237 |
|
---|
238 |
|
---|
239 | ifdef VBOX_REM_WRAPPER
|
---|
240 | #
|
---|
241 | # VBoxREM - Wrapper for loading VBoxREM2, VBoxREM32 or VBoxREM64.
|
---|
242 | #
|
---|
243 | DLLS += VBoxREMWrapper
|
---|
244 | VBoxREMWrapper_TEMPLATE = VBoxR3DllWarnNoPic
|
---|
245 | VBoxREMWrapper_NAME = VBoxREM
|
---|
246 | VBoxREMWrapper_DEFS = IN_REM_R3
|
---|
247 | if "$(KBUILD_TARGET_ARCH)" == "x86" && defined(VBOX_WITH_64_BITS_GUESTS)
|
---|
248 | VBoxREMWrapper_DEFS += VBOX_USE_BITNESS_SELECTOR
|
---|
249 | endif
|
---|
250 | ifdef VBOX_WITHOUT_REM_LDR_CYCLE
|
---|
251 | VBoxREMWrapper_DEFS += VBOX_WITHOUT_REM_LDR_CYCLE
|
---|
252 | endif
|
---|
253 | VBoxREMWrapper_SOURCES = \
|
---|
254 | VBoxREMWrapper.cpp
|
---|
255 | VBoxREMWrapper_SOURCES.win = VBoxREM.rc
|
---|
256 | if "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.amd64" && !defined(VBOX_USE_MINGWW64)
|
---|
257 | VBoxREMWrapper_SOURCES += \
|
---|
258 | VBoxREMWrapperA.asm
|
---|
259 | endif
|
---|
260 | VBoxREMWrapper_LIBS = \
|
---|
261 | $(LIB_RUNTIME)
|
---|
262 | ifndef VBOX_WITHOUT_REM_LDR_CYCLE
|
---|
263 | VBoxREMWrapper_LIBS += \
|
---|
264 | $(LIB_VMM)
|
---|
265 | VBoxREMWrapper_LIBS.darwin += \
|
---|
266 | $(TARGET_VBoxREMImp)
|
---|
267 | endif
|
---|
268 | VBoxREMWrapper_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib
|
---|
269 | endif
|
---|
270 |
|
---|
271 |
|
---|
272 | #
|
---|
273 | # The VBoxREM import library.
|
---|
274 | #
|
---|
275 | # This is a HACK to get around (a) the cyclic dependency between VBoxVMM and
|
---|
276 | # VBoxREM during linking and (b) the recursive build ordering which means VBoxREM
|
---|
277 | # won't be built until after all the other DLLs.
|
---|
278 | #
|
---|
279 | IMPORT_LIBS += VBoxREMImp
|
---|
280 | VBoxREMImp_TEMPLATE = VBoxR3Dll
|
---|
281 | ifn1of ($(KBUILD_TARGET), os2 win)
|
---|
282 | VBoxREMImp_NAME = VBoxREM
|
---|
283 | endif
|
---|
284 | VBoxREMImp_INST = $(INST_LIB)
|
---|
285 | VBoxREMImp_SOURCES.win = $(VBoxREMImp_0_OUTDIR)/VBoxREMWin.def
|
---|
286 | VBoxREMImp_CLEAN.win = $(VBoxREMImp_0_OUTDIR)/VBoxREMWin.def
|
---|
287 | VBoxREMImp_SOURCES.os2 = $(VBoxREMImp_0_OUTDIR)/VBoxREMOS2.def
|
---|
288 | VBoxREMImp_CLEAN.os2 = $(VBoxREMImp_0_OUTDIR)/VBoxREMOS2.def
|
---|
289 | ifn1of ($(KBUILD_TARGET), os2 win)
|
---|
290 | VBoxREMImp_SOURCES = $(VBoxREMImp_0_OUTDIR)/VBoxREMImp.c
|
---|
291 | VBoxREMImp_CLEAN = $(VBoxREMImp_0_OUTDIR)/VBoxREMImp.c
|
---|
292 | endif
|
---|
293 | ifn1of ($(KBUILD_TARGET), darwin os2 win)
|
---|
294 | VBoxREMImp_SONAME = VBoxREM$(SUFF_DLL)
|
---|
295 | endif
|
---|
296 | ifdef VBOX_WITHOUT_REM_LDR_CYCLE
|
---|
297 | VBoxREMImp_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib
|
---|
298 | else
|
---|
299 | VBoxREMImp_LDFLAGS.darwin = -install_name $(subst @rpath,@executable_path,$(VBOX_DYLD_EXECUTABLE_PATH))/VBoxREM.dylib
|
---|
300 | endif
|
---|
301 | VBoxREMImp_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib
|
---|
302 |
|
---|
303 | $$(VBoxREMImp_0_OUTDIR)/VBoxREMImp.c: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(VBOX_PATH_RECOMPILER_SRC)/Sun/deftoimp.sed $(MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
304 | $(call MSG_GENERATE,,$@)
|
---|
305 | $(QUIET)$(APPEND) -t $@ '#ifdef VBOX_HAVE_VISIBILITY_HIDDEN'
|
---|
306 | $(QUIET)$(APPEND) $@ '# define EXPORT __attribute__((visibility("default")))'
|
---|
307 | $(QUIET)$(APPEND) $@ '#else'
|
---|
308 | $(QUIET)$(APPEND) $@ '# define EXPORT'
|
---|
309 | $(QUIET)$(APPEND) $@ '#endif'
|
---|
310 | $(QUIET)$(APPEND) $@ ''
|
---|
311 | $(QUIET)$(SED) -f $(VBOX_PATH_RECOMPILER_SRC)/Sun/deftoimp.sed --append $@ $<
|
---|
312 |
|
---|
313 | $$(VBoxREMImp_0_OUTDIR)/VBoxREMOS2.def: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
314 | $(SED) \
|
---|
315 | -e 's/^[ \t][ \t]*REMR3/ _REMR3/' \
|
---|
316 | -e 's/\.[Dd][Ll][Ll]//' \
|
---|
317 | -e 's/^LIBRARY .*/LIBRARY VBoxREM INITINSTANCE TERMINSTANCE\nDATA MULTIPLE\n/' \
|
---|
318 | --output $@ \
|
---|
319 | $<
|
---|
320 |
|
---|
321 | $$(VBoxREMImp_0_OUTDIR)/VBoxREMWin.def: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(MAKEFILE_CURRENT) | $$(dir $$@)
|
---|
322 | $(CP) -f $< $@
|
---|
323 |
|
---|
324 | $$(VBoxREMImp_0_OUTDIR)/VBoxREMRes.o: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.rc $(MAKEFILE_CURRENT) $(VBOX_VERSION_MK) | $$(dir $$@)
|
---|
325 | $(call MSG_GENERATE,,$@)
|
---|
326 | $(QUIET)$(REDIRECT) -E 'COMSPEC=$(VBOX_GOOD_COMSPEC_BS)' -- $(TOOL_MINGWW64_PREFIX)windres \
|
---|
327 | $(addprefix -I,$(INCS) $(PATH_SDK_$(VBOX_WINPSDK)_INC) $(PATH_TOOL_$(VBOX_VCC_TOOL)_INC)) \
|
---|
328 | -DVBOX_SVN_REV=$(VBOX_SVN_REV) \
|
---|
329 | -DVBOX_SVN_REV_MOD_5K=$(expr $(VBOX_SVN_REV) % 50000) \
|
---|
330 | $< $@
|
---|
331 |
|
---|
332 | #
|
---|
333 | # The math testcase as a standalone program for testing and debugging purposes.
|
---|
334 | #
|
---|
335 | ## @todo This is a bit messy because of MINGW32.
|
---|
336 | testmath_ASFLAGS.amd64 = -m amd64
|
---|
337 | testmath_CFLAGS = -Wall -g
|
---|
338 | testmath_CFLAGS.release = -O3
|
---|
339 | testmath_LDFLAGS = -g
|
---|
340 | testmath_DEFS = MATHTEST_STANDALONE
|
---|
341 | testmath_SOURCES = Sun/testmath.c
|
---|
342 |
|
---|
343 |
|
---|
344 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
345 |
|
---|