VirtualBox

source: vbox/trunk/src/recompiler/Makefile-old.kmk@ 29308

Last change on this file since 29308 was 28990, checked in by vboxsync, 15 years ago

recompiler/Makefile.kmk: Started cleaning up the makefile.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.9 KB
Line 
1# $Id: Makefile-old.kmk 28990 2010-05-03 23:31:59Z vboxsync $
2## @file
3# The OLD Recompiler Sub-Makefile body.
4#
5
6#
7# Copyright (C) 2006-2007 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
20#
21# Globals
22#
23VBOX_PATH_RECOMPILER_SRC := $(PATH_SUB_CURRENT)
24
25# For 32-bit targets when enabled 64-bit guests we build 2 REM DLLs:
26# with 64-bit support (slow and buggy at the moment) VBOXREM64
27# only 32-bit support (faster, stable, but not suitable for 64-bit guests) VBOXREM32
28# During the runtime, we load appropriate library from VBOXREM, depending on guest settings.
29# 64-bit targets have 64-bit enabled REM by default, so is not part of this mess
30ifeq ($(KBUILD_TARGET_ARCH),x86)
31 ifdef VBOX_WITH_64_BITS_GUESTS
32 VBOX_USE_REM64 := 1
33 endif
34endif
35
36# Workaround for darwin hell.
37ifeq ($(KBUILD_TARGET),darwin)
38 VBOX_WITHOUT_REM_LDR_CYCLE = 1
39endif
40
41
42TEMPLATE_DUMMY = dummy template (move to kBuild) ## @todo Will be there in the next update, remove this.
43
44if 0
45 #
46 # Template useful for forcing a specific gcc version in case it comes in handy.
47 #
48 TOOL_MYGCC = description
49 TOOL_MYGCC_EXTENDS = GCC3
50 TOOL_MYGCC_CC = $(firstword $(which gcc-4.2 gcc-4.1 gcc-3.4 gcc-3.4.6 gcc-3.3 gcc-3.3.6 gcc-3.2))
51 TOOL_MYGCC_COMPILE_C_DEPEND =
52 TOOL_MYGCC_COMPILE_C_DEPORD =
53 TOOL_MYGCC_COMPILE_C_OUTPUT =
54 define TOOL_MYGCC_COMPILE_C_CMDS
55 $(QUIET)$(TOOL_MYGCC_CC) -c\
56 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\
57 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\
58 -o $(obj)\
59 $(abspath $(source))
60 endef
61 #Usage: target-i386/op_helper.c_TOOL = MYGCC
62endif
63
64## @todo Note to self (bird): Convert this mess to use NAME (that property didn't exist when the REM_MOD hack was first made I think).
65
66# For 64-bit Windows we currently use gcc (due to MSVC unaware of such a novel
67# thing as C99, a lot of GCC extensions deployed by QEMU and calling convention
68# differences) to cross-compile code to Linux/ELF and dynamically generate invocation wrappers.
69if1of ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), win.amd64)
70 VBOX_USE_REM2 = 1
71 REM_MOD := VBoxREM2
72else
73 REM_MOD := VBoxREM
74endif
75
76#
77# Target lists (some of them anyways).
78#
79ifdef VBOX_USE_REM2
80 SYSMODS += VBoxREM2
81else ifndef VBOX_USE_REM64
82 DLLS += VBoxREM
83endif
84
85
86#
87# The VBoxREM.[dll|so|..] or VBoxREM2.rel.
88#
89ifeq ($(KBUILD_TARGET),win)
90$(REM_MOD)_TEMPLATE = DUMMY
91$(REM_MOD)_TOOL.win.x86 = MINGW32
92$(REM_MOD)_TOOL.win.amd64 = XGCCAMD64LINUX
93$(REM_MOD)_SDKS.win.x86 = W32API
94$(REM_MOD)_ASFLAGS = -x assembler-with-cpp
95$(REM_MOD)_CFLAGS = -Wall -g -fno-omit-frame-pointer -fno-strict-aliasing -Wno-shadow
96$(REM_MOD)_CFLAGS.debug = -O0
97$(REM_MOD)_CFLAGS.release += -fno-gcse -O2
98$(REM_MOD)_CFLAGS.profile = $($(REM_MOD)_CFLAGS.release)
99$(REM_MOD)_DEFS += IN_RING3 $(ARCH_BITS_DEFS)
100# workaround the regparm bug in gcc <= 3.3
101$(REM_MOD)_DEFS.win.x86 += GCC_WITH_BUGGY_REGPARM
102else # !win
103$(REM_MOD)_TEMPLATE = VBOXR3NP
104# workaround the regparm bug in gcc <= 3.3
105$(REM_MOD)_DEFS = $(if $(VBOX_GCC_BUGGY_REGPARM),GCC_WITH_BUGGY_REGPARM,)
106endif # !win
107$(REM_MOD)_DEFS += IN_REM_R3 REM_INCLUDE_CPU_H
108#$(REM_MOD)_DEFS += REM_PHYS_ADDR_IN_TLB
109#$(REM_MOD)_DEFS += DEBUG_ALL_LOGGING DEBUG_DISAS DEBUG_PCALL DEBUG_EXEC DEBUG_FLUSH DEBUG_IOPORT DEBUG_SIGNAL DEBUG_TLB_CHECK DEBUG_TB_INVALIDATE DEBUG_TLB # Enables huge amounts of debug logging.
110#$(REM_MOD)_DEFS += DEBUG_TMP_LOGGING # log qemu parts to "/tmp/vbox-qemu.log" - does not work with VBoxREM2.
111$(REM_MOD)_DEFS.linux = _GNU_SOURCE
112ifdef VBOX_SOLARIS_10
113 $(REM_MOD)_DEFS.solaris = HOST_SOLARIS=10
114else
115 $(REM_MOD)_DEFS.solaris = HOST_SOLARIS=11
116endif
117$(REM_MOD)_DEFS.freebsd += _BSD
118
119$(REM_MOD)_INCS = \
120 Sun \
121 target-i386 \
122 tcg \
123 fpu \
124 $(PATH_$(REM_MOD)) \
125 $(PATH_ROOT)/src/VBox/VMM \
126 .
127ifn1of ($($(REM_MOD)_DEFS),DEBUG_TMP_LOGGING)
128$(REM_MOD)_DEFS += LOG_USE_C99
129$(REM_MOD)_INCS <= \
130 Sun/crt
131endif
132
133$(REM_MOD)_SOURCES = \
134 VBoxRecompiler.c \
135 cpu-exec.c \
136 exec.c \
137 translate-all.c \
138 host-utils.c \
139 cutils.c \
140 tcg/tcg.c \
141 tcg/tcg-dyngen.c \
142 tcg/tcg-runtime.c \
143 fpu/softfloat-native.c \
144 target-i386/op_helper.c \
145 target-i386/helper.c \
146 target-i386/translate.c
147
148ifeq ($(KBUILD_TARGET_ARCH),amd64)
149 $(REM_MOD)_DEFS += __x86_64__
150 $(REM_MOD)_INCS += tcg/x86_64
151else
152 $(REM_MOD)_DEFS += __i386__
153 $(REM_MOD)_INCS += tcg/i386
154endif
155
156ifneq ($(KBUILD_TARGET),freebsd)
157$(REM_MOD)_SOURCES.debug += \
158 Sun/testmath.c
159endif
160$(REM_MOD)_SOURCES.win.x86 = $(PATH_VBoxREMImp)/VBoxREMWin.def
161ifndef VBOX_USE_REM2
162 $(REM_MOD)_POST_CMDS = $(VBOX_SIGN_IMAGE_CMDS)
163endif
164ifdef VBOX_USE_REM2
165## @todo spread out where it belongs.
166$(REM_MOD)_TEMPLATE = VBOXNOCRTGAS
167$(REM_MOD)_DEFS += LOG_USE_C99 $(ARCH_BITS_DEFS)
168
169# This doesn't fit in IPRT because it requires GAS and is LGPL.
170$(REM_MOD)_SOURCES += \
171 Sun/e_powl-$(KBUILD_TARGET_ARCH).S
172
173$(REM_MOD)_INCS += \
174 Sun/crt
175$(REM_MOD)_SYSSUFF = .rel
176endif
177ifdef VBOX_USE_REM2
178$(REM_MOD)_LIBS = \
179 $(PATH_LIB)/RuntimeR3NoCRTGCC$(VBOX_SUFF_LIB)
180else
181$(REM_MOD)_LIBS = \
182 $(LIB_VMM) \
183 $(LIB_RUNTIME)
184$(REM_MOD)_LIBS.darwin = \
185 $(TARGET_VBoxREMImp)
186endif
187
188## @todo clean up this, there are some duplicates with the template here I think.
189$(REM_MOD)_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/$(REM_MOD).dylib
190$(REM_MOD)_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib -Wl,--no-undefined
191$(REM_MOD)_LDFLAGS.linux = $(VBOX_LD_as_needed)
192$(REM_MOD)_LDFLAGS.os2 = -Zomf
193$(REM_MOD)_LDFLAGS.debug = -g
194$(REM_MOD)_LDFLAGS.solaris = -mimpure-text
195
196
197if defined(VBOX_USE_REM2) || defined(VBOX_USE_REM64)
198#
199# The VBoxREM2, VBoxREM32 and VBoxREM64 wrapper.
200#
201DLLS += VBoxREMWrapper
202VBoxREMWrapper_TEMPLATE = VBOXR3
203VBoxREMWrapper_NAME = VBoxREM
204VBoxREMWrapper_DEFS = IN_REM_R3 $(if $(VBOX_WITH_VMI),VBOX_WITH_VMI,)
205 ifdef VBOX_USE_REM64
206VBoxREMWrapper_DEFS += VBOX_USE_BITNESS_SELECTOR
207 endif
208 ifdef VBOX_WITHOUT_REM_LDR_CYCLE
209VBoxREMWrapper_DEFS += VBOX_WITHOUT_REM_LDR_CYCLE
210 endif
211VBoxREMWrapper_SOURCES = \
212 VBoxREMWrapper.cpp
213 ifdef VBOX_USE_REM2
214VBoxREMWrapper_SOURCES += \
215 VBoxREMWrapperA.asm
216 endif
217VBoxREMWrapper_LIBS = \
218 $(LIB_RUNTIME)
219 ifndef VBOX_WITHOUT_REM_LDR_CYCLE
220VBoxREMWrapper_LIBS += \
221 $(LIB_VMM)
222VBoxREMWrapper_LIBS.darwin += \
223 $(TARGET_VBoxREMImp)
224 else
225VBoxREMWrapper_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib
226 endif
227endif
228
229
230ifdef VBOX_USE_REM64
231 DLLS += VBoxREM32
232 VBoxREM32_EXTENDS = VBoxREM
233 VBoxREM32_EXTENDS_BY = appending
234 VBoxREM32_TEMPLATE = $(VBoxREM_TEMPLATE)
235 VBoxREM32_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM32.dylib
236 VBoxREM32_LIBS.darwin = $(LIB_REM)
237
238 DLLS += VBoxREM64
239 VBoxREM64_EXTENDS = VBoxREM
240 VBoxREM64_EXTENDS_BY = appending
241 VBoxREM64_TEMPLATE = $(VBoxREM_TEMPLATE)
242 VBoxREM64_DEFS = VBOX_ENABLE_VBOXREM64
243 VBoxREM64_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM64.dylib
244 VBoxREM64_LIBS.darwin = $(LIB_REM)
245
246endif # USE_VBOXREM64
247
248
249#
250# The VBoxREM import library.
251#
252# This is a HACK to get around (a) the cyclic dependency between VBoxVMM and
253# VBoxREM during linking and (b) the recursive build ordering which means VBoxREM
254# won't be built until after all the other DLLs.
255#
256IMPORT_LIBS += VBoxREMImp
257VBoxREMImp_TEMPLATE = VBOXR3
258 ifn1of ($(KBUILD_TARGET), os2 win)
259VBoxREMImp_NAME = VBoxREM
260 endif
261VBoxREMImp_INST = $(INST_LIB)
262VBoxREMImp_SOURCES.win = $(PATH_VBoxREMImp)/VBoxREMWin.def
263VBoxREMImp_CLEAN.win = $(PATH_VBoxREMImp)/VBoxREMWin.def
264VBoxREMImp_SOURCES.os2 = $(PATH_VBoxREMImp)/VBoxREMOS2.def
265VBoxREMImp_CLEAN.os2 = $(PATH_VBoxREMImp)/VBoxREMOS2.def
266 ifn1of ($(KBUILD_TARGET), os2 win)
267VBoxREMImp_SOURCES = $(PATH_VBoxREMImp)/VBoxREMImp.c
268VBoxREMImp_CLEAN = $(PATH_VBoxREMImp)/VBoxREMImp.c
269 endif
270 ifn1of ($(KBUILD_TARGET), darwin os2 win)
271VBoxREMImp_SONAME = VBoxREM$(SUFF_DLL)
272 endif
273ifdef VBOX_WITHOUT_REM_LDR_CYCLE
274 VBoxREMImp_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxREM.dylib
275else
276 VBoxREMImp_LDFLAGS.darwin = -install_name $(subst @rpath,@executable_path,$(VBOX_DYLD_EXECUTABLE_PATH))/VBoxREM.dylib
277endif
278VBoxREMImp_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib
279
280$$(PATH_VBoxREMImp)/VBoxREMImp.c: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(VBOX_PATH_RECOMPILER_SRC)/Sun/deftoimp.sed $(MAKEFILE_CURRENT) | $$(dir $$@)
281 $(call MSG_GENERATE,,$@)
282 $(QUIET)$(APPEND) -t $@ '#ifdef VBOX_HAVE_VISIBILITY_HIDDEN'
283 $(QUIET)$(APPEND) $@ '# define EXPORT __attribute__((visibility("default")))'
284 $(QUIET)$(APPEND) $@ '#else'
285 $(QUIET)$(APPEND) $@ '# define EXPORT'
286 $(QUIET)$(APPEND) $@ '#endif'
287 $(QUIET)$(APPEND) $@ ''
288 $(QUIET)$(SED) -f $(VBOX_PATH_RECOMPILER_SRC)/Sun/deftoimp.sed --append $@ $<
289
290$$(PATH_VBoxREMImp)/VBoxREMOS2.def: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(MAKEFILE_CURRENT) | $$(dir $$@)
291 $(SED) \
292 -e 's/^[ \t][ \t]*REMR3/ _REMR3/' \
293 -e 's/\.[Dd][Ll][Ll]//' \
294 -e 's/^LIBRARY .*/LIBRARY VBoxREM INITINSTANCE TERMINSTANCE\nDATA MULTIPLE\n/' \
295 --output $@ \
296 $<
297
298$$(PATH_VBoxREMImp)/VBoxREMWin.def: $(VBOX_PATH_RECOMPILER_SRC)/VBoxREM.def $(MAKEFILE_CURRENT) | $$(dir $$@)
299 $(CP) -f $< $@
300
301
302#
303# The math testcase as a standalone program for testing and debugging purposes.
304#
305## @todo This is a bit messy because of MINGW32.
306testmath_ASFLAGS.amd64 = -m amd64
307testmath_CFLAGS = -Wall -g
308testmath_CFLAGS.release = -O3
309testmath_LDFLAGS = -g
310testmath_DEFS = MATHTEST_STANDALONE
311testmath_SOURCES = Sun/testmath.c
312
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette