提交 a4dbe3c3 编写于 作者: E erikj

7141244: build-infra merge: Include $(SPEC) in makefiles and make variables overridable

Reviewed-by: dholmes, ohrstrom, ohair, jcoomes
上级 14612e0c
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
# needs to be set here since this Makefile doesn't include defs.make # needs to be set here since this Makefile doesn't include defs.make
OS_VENDOR:=$(shell uname -s) OS_VENDOR:=$(shell uname -s)
-include $(SPEC)
include $(GAMMADIR)/make/scm.make include $(GAMMADIR)/make/scm.make
include $(GAMMADIR)/make/altsrc.make include $(GAMMADIR)/make/altsrc.make
...@@ -247,6 +248,8 @@ flags.make: $(BUILDTREE_MAKE) ../shared_dirs.lst ...@@ -247,6 +248,8 @@ flags.make: $(BUILDTREE_MAKE) ../shared_dirs.lst
echo "HOTSPOT_EXTRA_SYSDEFS\$$(HOTSPOT_EXTRA_SYSDEFS) = $(HOTSPOT_EXTRA_SYSDEFS)" && \ echo "HOTSPOT_EXTRA_SYSDEFS\$$(HOTSPOT_EXTRA_SYSDEFS) = $(HOTSPOT_EXTRA_SYSDEFS)" && \
echo "SYSDEFS += \$$(HOTSPOT_EXTRA_SYSDEFS)"; \ echo "SYSDEFS += \$$(HOTSPOT_EXTRA_SYSDEFS)"; \
echo; \ echo; \
[ -n "$(SPEC)" ] && \
echo "include $(SPEC)"; \
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(VARIANT).make"; \ echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(VARIANT).make"; \
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(COMPILER).make"; \ echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(COMPILER).make"; \
) > $@ ) > $@
......
...@@ -27,25 +27,27 @@ OS_VENDOR = $(shell uname -s) ...@@ -27,25 +27,27 @@ OS_VENDOR = $(shell uname -s)
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# CC, CXX & AS # CC, CXX & AS
# When cross-compiling the ALT_COMPILER_PATH points # If a SPEC is not set already, then use these defaults.
# to the cross-compilation toolset ifeq ($(SPEC),)
ifdef CROSS_COMPILE_ARCH # When cross-compiling the ALT_COMPILER_PATH points
# to the cross-compilation toolset
ifdef CROSS_COMPILE_ARCH
CXX = $(ALT_COMPILER_PATH)/g++ CXX = $(ALT_COMPILER_PATH)/g++
CC = $(ALT_COMPILER_PATH)/gcc CC = $(ALT_COMPILER_PATH)/gcc
HOSTCXX = g++ HOSTCXX = g++
HOSTCC = gcc HOSTCC = gcc
else ifneq ($(OS_VENDOR), Darwin) else ifneq ($(OS_VENDOR), Darwin)
CXX = g++ CXX = g++
CC = gcc CC = gcc
HOSTCXX = $(CXX) HOSTCXX = $(CXX)
HOSTCC = $(CC) HOSTCC = $(CC)
endif endif
# i486 hotspot requires -mstackrealign on Darwin. # i486 hotspot requires -mstackrealign on Darwin.
# llvm-gcc supports this in Xcode 3.2.6 and 4.0. # llvm-gcc supports this in Xcode 3.2.6 and 4.0.
# gcc-4.0 supports this on earlier versions. # gcc-4.0 supports this on earlier versions.
# Prefer llvm-gcc where available. # Prefer llvm-gcc where available.
ifeq ($(OS_VENDOR), Darwin) ifeq ($(OS_VENDOR), Darwin)
ifeq ($(origin CXX), default) ifeq ($(origin CXX), default)
CXX = llvm-g++ CXX = llvm-g++
endif endif
...@@ -71,9 +73,11 @@ ifeq ($(OS_VENDOR), Darwin) ...@@ -71,9 +73,11 @@ ifeq ($(OS_VENDOR), Darwin)
HOSTCXX = $(CXX) HOSTCXX = $(CXX)
HOSTCC = $(CC) HOSTCC = $(CC)
endif
AS = $(CC) -c -x assembler-with-cpp
endif endif
AS = $(CC) -c -x assembler-with-cpp
# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
# prints the numbers (e.g. "2.95", "3.2.1") # prints the numbers (e.g. "2.95", "3.2.1")
......
...@@ -25,12 +25,15 @@ ...@@ -25,12 +25,15 @@
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# CC, CXX & AS # CC, CXX & AS
CXX = CC # If a SPEC is not set already, then use these defaults.
CC = cc ifeq ($(SPEC),)
AS = $(CC) -c CXX = CC
CC = cc
HOSTCXX = $(CXX) AS = $(CC) -c
HOSTCC = $(CC)
HOSTCXX = $(CXX)
HOSTCC = $(CC)
endif
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH)) ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
ARCHFLAG/i486 = -m32 ARCHFLAG/i486 = -m32
......
...@@ -24,6 +24,11 @@ ...@@ -24,6 +24,11 @@
# The common definitions for hotspot builds. # The common definitions for hotspot builds.
# Optionally include SPEC file generated by configure.
ifneq ($(SPEC),)
include $(SPEC)
endif
# Default to verbose build logs (show all compile lines): # Default to verbose build logs (show all compile lines):
MAKE_VERBOSE=y MAKE_VERBOSE=y
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
# The makefiles are split this way so that "make foo" will run faster by not # The makefiles are split this way so that "make foo" will run faster by not
# having to read the dependency files for the vm. # having to read the dependency files for the vm.
-include $(SPEC)
include $(GAMMADIR)/make/scm.make include $(GAMMADIR)/make/scm.make
include $(GAMMADIR)/make/altsrc.make include $(GAMMADIR)/make/altsrc.make
...@@ -244,6 +245,8 @@ flags.make: $(BUILDTREE_MAKE) ../shared_dirs.lst ...@@ -244,6 +245,8 @@ flags.make: $(BUILDTREE_MAKE) ../shared_dirs.lst
echo "HOTSPOT_EXTRA_SYSDEFS\$$(HOTSPOT_EXTRA_SYSDEFS) = $(HOTSPOT_EXTRA_SYSDEFS)" && \ echo "HOTSPOT_EXTRA_SYSDEFS\$$(HOTSPOT_EXTRA_SYSDEFS) = $(HOTSPOT_EXTRA_SYSDEFS)" && \
echo "SYSDEFS += \$$(HOTSPOT_EXTRA_SYSDEFS)"; \ echo "SYSDEFS += \$$(HOTSPOT_EXTRA_SYSDEFS)"; \
echo; \ echo; \
[ -n "$(SPEC)" ] && \
echo "include $(SPEC)"; \
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(VARIANT).make"; \ echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(VARIANT).make"; \
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(COMPILER).make"; \ echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(COMPILER).make"; \
) > $@ ) > $@
......
...@@ -25,21 +25,26 @@ ...@@ -25,21 +25,26 @@
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# CC, CXX & AS # CC, CXX & AS
# When cross-compiling the ALT_COMPILER_PATH points # If a SPEC is not set already, then use these defaults.
# to the cross-compilation toolset ifeq ($(SPEC),)
ifdef CROSS_COMPILE_ARCH # When cross-compiling the ALT_COMPILER_PATH points
CXX = $(ALT_COMPILER_PATH)/g++ # to the cross-compilation toolset
CC = $(ALT_COMPILER_PATH)/gcc ifdef CROSS_COMPILE_ARCH
HOSTCXX = g++ CXX = $(ALT_COMPILER_PATH)/g++
HOSTCC = gcc CC = $(ALT_COMPILER_PATH)/gcc
else HOSTCXX = g++
CXX = g++ HOSTCC = gcc
CC = gcc STRIP = $(ALT_COMPILER_PATH)/strip
HOSTCXX = $(CXX) else
HOSTCC = $(CC) CXX = g++
CC = gcc
HOSTCXX = $(CXX)
HOSTCC = $(CC)
STRIP = strip
endif
AS = $(CC) -c
endif endif
AS = $(CC) -c
# -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only
# prints the numbers (e.g. "2.95", "3.2.1") # prints the numbers (e.g. "2.95", "3.2.1")
...@@ -261,9 +266,3 @@ endif ...@@ -261,9 +266,3 @@ endif
ifdef MINIMIZE_RAM_USAGE ifdef MINIMIZE_RAM_USAGE
CFLAGS += -DMINIMIZE_RAM_USAGE CFLAGS += -DMINIMIZE_RAM_USAGE
endif endif
ifdef CROSS_COMPILE_ARCH
STRIP = $(ALT_COMPILER_PATH)/strip
else
STRIP = strip
endif
...@@ -25,12 +25,15 @@ ...@@ -25,12 +25,15 @@
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# CC, CXX & AS # CC, CXX & AS
CXX = CC # If a SPEC is not set already, then use these defaults.
CC = cc ifeq ($(SPEC),)
AS = $(CC) -c CXX = CC
CC = cc
HOSTCXX = $(CXX) AS = $(CC) -c
HOSTCC = $(CC)
HOSTCXX = $(CXX)
HOSTCC = $(CC)
endif
ARCHFLAG = $(ARCHFLAG/$(BUILDARCH)) ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
ARCHFLAG/i486 = -m32 ARCHFLAG/i486 = -m32
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
# The makefiles are split this way so that "make foo" will run faster by not # The makefiles are split this way so that "make foo" will run faster by not
# having to read the dependency files for the vm. # having to read the dependency files for the vm.
-include $(SPEC)
include $(GAMMADIR)/make/scm.make include $(GAMMADIR)/make/scm.make
include $(GAMMADIR)/make/altsrc.make include $(GAMMADIR)/make/altsrc.make
...@@ -237,6 +238,8 @@ flags.make: $(BUILDTREE_MAKE) ../shared_dirs.lst ...@@ -237,6 +238,8 @@ flags.make: $(BUILDTREE_MAKE) ../shared_dirs.lst
echo "HOTSPOT_EXTRA_SYSDEFS\$$(HOTSPOT_EXTRA_SYSDEFS) = $(HOTSPOT_EXTRA_SYSDEFS)" && \ echo "HOTSPOT_EXTRA_SYSDEFS\$$(HOTSPOT_EXTRA_SYSDEFS) = $(HOTSPOT_EXTRA_SYSDEFS)" && \
echo "SYSDEFS += \$$(HOTSPOT_EXTRA_SYSDEFS)"; \ echo "SYSDEFS += \$$(HOTSPOT_EXTRA_SYSDEFS)"; \
echo; \ echo; \
[ -n "$(SPEC)" ] && \
echo "include $(SPEC)"; \
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(VARIANT).make"; \ echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(VARIANT).make"; \
echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(COMPILER).make"; \ echo "include \$$(GAMMADIR)/make/$(OS_FAMILY)/makefiles/$(COMPILER).make"; \
) > $@ ) > $@
......
...@@ -25,9 +25,13 @@ ...@@ -25,9 +25,13 @@
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# CC, CXX & AS # CC, CXX & AS
CXX = g++ # If a SPEC is not set already, then use these defaults.
CC = gcc ifeq ($(SPEC),)
AS = $(CC) -c CXX = g++
CC = gcc
AS = $(CC) -c
MCS = /usr/ccs/bin/mcs
endif
Compiler = gcc Compiler = gcc
...@@ -193,5 +197,3 @@ DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH)) ...@@ -193,5 +197,3 @@ DEBUG_CFLAGS += $(DEBUG_CFLAGS/$(BUILDARCH))
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),) ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
DEBUG_CFLAGS += -gstabs DEBUG_CFLAGS += -gstabs
endif endif
MCS = /usr/ccs/bin/mcs
...@@ -22,18 +22,22 @@ ...@@ -22,18 +22,22 @@
# #
# #
# Compiler-specific flags for sparcworks. # If a SPEC is not set already, then use these defaults.
ifeq ($(SPEC),)
# Compiler-specific flags for sparcworks.
CC = cc
CXX = CC
# tell make which C and C++ compilers to use # Note that this 'as' is an older version of the Sun Studio 'fbe', and will
CC = cc # use the older style options. The 'fbe' options will match 'cc' and 'CC'.
CXX = CC AS = /usr/ccs/bin/as
# Note that this 'as' is an older version of the Sun Studio 'fbe', and will NM = /usr/ccs/bin/nm
# use the older style options. The 'fbe' options will match 'cc' and 'CC'. NAWK = /bin/nawk
AS = /usr/ccs/bin/as
NM = /usr/ccs/bin/nm MCS = /usr/ccs/bin/mcs
NAWK = /bin/nawk STRIP = /usr/ccs/bin/strip
endif
REORDER_FLAG = -xF REORDER_FLAG = -xF
...@@ -557,9 +561,6 @@ else ...@@ -557,9 +561,6 @@ else
#LINK_INTO = LIBJVM #LINK_INTO = LIBJVM
endif endif
MCS = /usr/ccs/bin/mcs
STRIP = /usr/ccs/bin/strip
# Solaris platforms collect lots of redundant file-ident lines, # Solaris platforms collect lots of redundant file-ident lines,
# to the point of wasting a significant percentage of file space. # to the point of wasting a significant percentage of file space.
# (The text is stored in ELF .comment sections, contributed by # (The text is stored in ELF .comment sections, contributed by
......
...@@ -297,6 +297,10 @@ $(variantDir)\local.make: checks ...@@ -297,6 +297,10 @@ $(variantDir)\local.make: checks
@ echo BUILDARCH=$(BUILDARCH) >> $@ @ echo BUILDARCH=$(BUILDARCH) >> $@
@ echo Platform_arch=$(Platform_arch) >> $@ @ echo Platform_arch=$(Platform_arch) >> $@
@ echo Platform_arch_model=$(Platform_arch_model) >> $@ @ echo Platform_arch_model=$(Platform_arch_model) >> $@
@ echo CXX=$(CXX) >> $@
@ echo LD=$(LD) >> $@
@ echo MT=$(MT) >> $@
@ echo RC=$(RC) >> $@
@ sh $(WorkSpace)/make/windows/get_msc_ver.sh >> $@ @ sh $(WorkSpace)/make/windows/get_msc_ver.sh >> $@
checks: checkVariant checkWorkSpace checkSA checks: checkVariant checkWorkSpace checkSA
......
...@@ -23,7 +23,9 @@ ...@@ -23,7 +23,9 @@
# #
# Generic compiler settings # Generic compiler settings
!if "x$(CXX)" == "x"
CXX=cl.exe CXX=cl.exe
!endif
# CXX Flags: (these vary slightly from VC6->VS2003->VS2005 compilers) # CXX Flags: (these vary slightly from VC6->VS2003->VS2005 compilers)
# /nologo Supress copyright message at every cl.exe startup # /nologo Supress copyright message at every cl.exe startup
...@@ -183,8 +185,10 @@ BUFFEROVERFLOWLIB = bufferoverflowU.lib ...@@ -183,8 +185,10 @@ BUFFEROVERFLOWLIB = bufferoverflowU.lib
LD_FLAGS = /manifest $(LD_FLAGS) $(BUFFEROVERFLOWLIB) LD_FLAGS = /manifest $(LD_FLAGS) $(BUFFEROVERFLOWLIB)
# Manifest Tool - used in VS2005 and later to adjust manifests stored # Manifest Tool - used in VS2005 and later to adjust manifests stored
# as resources inside build artifacts. # as resources inside build artifacts.
!if "x$(MT)" == "x"
MT=mt.exe MT=mt.exe
!endif !endif
!endif
!if "$(COMPILER_NAME)" == "VS2008" !if "$(COMPILER_NAME)" == "VS2008"
PRODUCT_OPT_OPTION = /O2 /Oy- PRODUCT_OPT_OPTION = /O2 /Oy-
...@@ -194,8 +198,10 @@ GX_OPTION = /EHsc ...@@ -194,8 +198,10 @@ GX_OPTION = /EHsc
LD_FLAGS = /manifest $(LD_FLAGS) LD_FLAGS = /manifest $(LD_FLAGS)
# Manifest Tool - used in VS2005 and later to adjust manifests stored # Manifest Tool - used in VS2005 and later to adjust manifests stored
# as resources inside build artifacts. # as resources inside build artifacts.
!if "x$(MT)" == "x"
MT=mt.exe MT=mt.exe
!endif !endif
!endif
!if "$(COMPILER_NAME)" == "VS2010" !if "$(COMPILER_NAME)" == "VS2010"
PRODUCT_OPT_OPTION = /O2 /Oy- PRODUCT_OPT_OPTION = /O2 /Oy-
...@@ -205,7 +211,9 @@ GX_OPTION = /EHsc ...@@ -205,7 +211,9 @@ GX_OPTION = /EHsc
LD_FLAGS = /manifest $(LD_FLAGS) LD_FLAGS = /manifest $(LD_FLAGS)
# Manifest Tool - used in VS2005 and later to adjust manifests stored # Manifest Tool - used in VS2005 and later to adjust manifests stored
# as resources inside build artifacts. # as resources inside build artifacts.
!if "x$(MT)" == "x"
MT=mt.exe MT=mt.exe
!endif
!if "$(BUILDARCH)" == "i486" !if "$(BUILDARCH)" == "i486"
LD_FLAGS = /SAFESEH $(LD_FLAGS) LD_FLAGS = /SAFESEH $(LD_FLAGS)
!endif !endif
...@@ -225,7 +233,9 @@ FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION) ...@@ -225,7 +233,9 @@ FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
!endif !endif
# Generic linker settings # Generic linker settings
!if "x$(LD)" == "x"
LD=link.exe LD=link.exe
!endif
LD_FLAGS= $(LD_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \ LD_FLAGS= $(LD_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \ comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \ uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \
...@@ -237,7 +247,9 @@ LD_FLAGS= $(LD_FLAGS) psapi.lib ...@@ -237,7 +247,9 @@ LD_FLAGS= $(LD_FLAGS) psapi.lib
!endif !endif
# Resource compiler settings # Resource compiler settings
!if "x$(RC)" == "x"
RC=rc.exe RC=rc.exe
!endif
RC_FLAGS=/D "HS_VER=$(HS_VER)" \ RC_FLAGS=/D "HS_VER=$(HS_VER)" \
/D "HS_DOTVER=$(HS_DOTVER)" \ /D "HS_DOTVER=$(HS_DOTVER)" \
/D "HS_BUILD_ID=$(HS_BUILD_ID)" \ /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
......
...@@ -202,3 +202,19 @@ ifeq ($(BUILD_WIN_SA), 1) ...@@ -202,3 +202,19 @@ ifeq ($(BUILD_WIN_SA), 1)
# Must pass this down to nmake. # Must pass this down to nmake.
MAKE_ARGS += BUILD_WIN_SA=1 MAKE_ARGS += BUILD_WIN_SA=1
endif endif
# Propagate compiler and tools paths from configure to nmake.
# Need to make sure they contain \\ and not /.
ifneq ($(SPEC),)
ifeq ($(USING_CYGWIN), true)
MAKE_ARGS += CXX="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(CXX)))"
MAKE_ARGS += LD="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(LD)))"
MAKE_ARGS += RC="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(RC)))"
MAKE_ARGS += MT="$(subst /,\\,$(shell /bin/cygpath -s -m -a $(MT)))"
else
MAKE_ARGS += CXX="$(subst /,\\,$(CXX))"
MAKE_ARGS += LD="$(subst /,\\,$(LD))"
MAKE_ARGS += RC="$(subst /,\\,$(RC))"
MAKE_ARGS += MT="$(subst /,\\,$(MT))"
endif
endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册