Changeset 5691 in vbox for trunk/src/recompiler
- Timestamp:
- Nov 11, 2007 5:40:18 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26037
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Makefile.kmk
r5306 r5691 19 19 # 20 20 # Copyright (C) 2006-2007 innotek GmbH 21 # 21 # 22 22 # This file is part of VirtualBox Open Source Edition (OSE), as 23 23 # available from http://www.virtualbox.org. This file is free software; … … 27 27 # distribution. VirtualBox OSE is distributed in the hope that it will 28 28 # be useful, but WITHOUT ANY WARRANTY of any kind. 29 # 29 30 30 31 … … 34 35 35 36 BLDPROGS = dyngen 36 if eq ($(BUILD_TARGET_ARCH),amd64)37 ifneq ($(or $(eq $(BUILD_TARGET_ARCH),amd64) , $(VBOX_TARGET_MAC_OS_X_VERSION_10_5)),) 37 38 SYSMODS = VBoxREM2 38 39 REM_MOD = VBoxREM2 … … 60 61 REM_USE_NOCRT := 1 61 62 endif 62 ifeq ($( BUILD_TARGET_ARCH),amd64)63 ifeq ($(REM_MOD),VBoxREM2) 63 64 REM_USE_NOCRT := 1 64 65 endif … … 125 126 $(REM_MOD)_CLEAN = $(FILE_OP_OBJ) $(PATH_$(REM_MOD))/op.S.dep 126 127 endif 127 #$(REM_MOD)_SOURCES.os2 = $(PATH_TARGET)/$(REM_MOD).def128 128 $(REM_MOD)_SOURCES.win.x86 = $(REM_MOD).def 129 129 ifneq ($(REM_MOD),VBoxREM2) … … 137 137 $(REM_MOD)_CFLAGS.amd64 = -O2 138 138 $(REM_MOD)_CFLAGS.debug = -O0 139 $(REM_MOD)_CFLAGS.darwin = -fno-common -mdynamic-no-pic140 139 ifdef ($(BUILD_TARGET_ARCH),x86) 141 140 $(REM_MOD)_CFLAGS.release+= -fomit-frame-pointer -fno-gcse … … 153 152 ifeq ($(BUILD_TARGET),l4) 154 153 $(REM_MOD)_LIBS += \ 155 154 $(L4_LIBDIR)/libuc.0.s.so 156 155 endif 157 156 $(REM_MOD)_LIBS.darwin = \ 158 157 $(TARGET_VBoxREMImp) 159 # $(PATH_BIN)/VBoxREMImp.dylib160 158 $(REM_MOD)_LDFLAGS.darwin = -read_only_relocs suppress -multiply_defined warning #-install_name @executable_path/$(REM_MOD).dylib# 159 $(REM_MOD)_CFLAGS.darwin = -fno-common -mdynamic-no-pic 161 160 else 162 161 $(REM_MOD)_LIBS = \ 163 162 $(PATH_LIB)/RuntimeR3NoCRTGCC$(VBOX_SUFF_LIB) 164 163 $(REM_MOD)_SYSSUFF = .rel 164 $(REM_MOD)_LDFLAGS.darwin = -nostdlib -static 165 $(REM_MOD)_CFLAGS.darwin = -fno-common -static -mno-dynamic-no-pic 165 166 endif 166 167 … … 256 257 257 258 258 ifeq ($( BUILD_TARGET_ARCH),amd64)259 ifeq ($(REM_MOD),VBoxREM2) 259 260 # 260 261 # The VBoxREM2 wrapper. … … 375 376 ifeq ($(BUILD_TARGET),darwin) 376 377 ifeq ($(filter-out i386-elf-gcc%, $(VBOX_RECOMPILER_OP_GCC)),) 377 COMPILE_OP_CMDS := $(filter-out -mdynamic-no-pic , $(COMPILE_OP_CMDS))378 COMPILE_OP_CMDS := $(filter-out -mdynamic-no-pic -mno-dynamic-no-pic -fno-stack-protector, $(COMPILE_OP_CMDS)) 378 379 endif 379 380 endif
Note:
See TracChangeset
for help on using the changeset viewer.