Changeset 6629 in vbox
- Timestamp:
- Jan 30, 2008 8:30:03 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27690
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r6620 r6629 1006 1006 VBOX_GCC_CHECK_CC = $(2) 1007 1007 VBOX_GCC_CHECK_CXX = $(2) 1008 VBOX_GCC_CHECK_LD = $(2) 1008 1009 VBOX_GCC32_CHECK_CXX = $(2) 1009 1010 else … … 1016 1017 if $(TOOL_$(VBOX_GCC_TOOL)_CXX) $(1) -S -o /dev/null -xc++ /dev/null > /dev/null 2>&1; \ 1017 1018 then echo "$(1)"; \ 1019 else echo "$(2)"; fi; ) 1020 1021 VBOX_GCC_CHECK_LD = $(shell \ 1022 if $(TOOL_$(VBOX_GCC_TOOL)_LD) -Wl,$(1) -nostdlib -o /dev/null -xc /dev/null > /dev/null 2>&1 ;\ 1023 then echo "-Wl,$(1)"; \ 1018 1024 else echo "$(2)"; fi; ) 1019 1025 … … 1052 1058 # Produce code optimized for the most common IA32/AMD64/EM64T processors. Introduced with gcc version 4.2. 1053 1059 $(APPEND) '$@' 'VBOX_GCC_mtune-generic ?= $(call VBOX_GCC_CHECK_CC,-mtune=generic,)' 1060 $(APPEND) '$@' 'VBOX_LD_as_needed ?= $(call VBOX_GCC_CHECK_LD,--as-needed,)' 1054 1061 ifneq ($(BUILD_TARGET),l4) 1055 1062 # Set default attribute for ELF and MACH-O symbols to ``hidden'' to reduce the number
Note:
See TracChangeset
for help on using the changeset viewer.