duke@435: # duke@435: # Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved. duke@435: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: # duke@435: # This code is free software; you can redistribute it and/or modify it duke@435: # under the terms of the GNU General Public License version 2 only, as duke@435: # published by the Free Software Foundation. duke@435: # duke@435: # This code is distributed in the hope that it will be useful, but WITHOUT duke@435: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: # version 2 for more details (a copy is included in the LICENSE file that duke@435: # accompanied this code). duke@435: # duke@435: # You should have received a copy of the GNU General Public License version duke@435: # 2 along with this work; if not, write to the Free Software Foundation, duke@435: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: # duke@435: # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, duke@435: # CA 95054 USA or visit www.sun.com if you need additional information or duke@435: # have any questions. duke@435: # duke@435: # duke@435: duke@435: # Generic compiler settings duke@435: CPP=cl.exe duke@435: duke@435: # CPP Flags: (these vary slightly from VC6->VS2003->VS2005 compilers) duke@435: # /nologo Supress copyright message at every cl.exe startup duke@435: # /W3 Warning level 3 duke@435: # /Zi Include debugging information duke@435: # /WX Treat any warning error as a fatal error duke@435: # /MD Use dynamic multi-threaded runtime (msvcrt.dll or msvc*71.dll) duke@435: # /MTd Use static multi-threaded runtime debug versions duke@435: # /O1 Optimize for size (/Os), skips /Oi duke@435: # /O2 Optimize for speed (/Ot), adds /Oi to /O1 duke@435: # /Ox Old "all optimizations flag" for VC6 (in /O1) duke@435: # /Oy Use frame pointer register as GP reg (in /Ox and /O1) duke@435: # /GF Merge string constants and put in read-only memory (in /O1) duke@435: # /Gy Func level link (in /O1, allows for link-time func ordering) duke@435: # /Gs Inserts stack probes (in /O1) duke@435: # /GS Inserts security stack checks in some functions (VS2005 default) duke@435: # /Oi Use intrinsics (in /O2) duke@435: # /Od Disable all optimizations duke@435: # duke@435: # NOTE: Normally following any of the above with a '-' will turn off that flag duke@435: duke@435: # These are always used in all compiles duke@435: CPP_FLAGS=/nologo /W3 /WX duke@435: duke@435: # Let's add debug information always too. duke@435: CPP_FLAGS=$(CPP_FLAGS) /Zi duke@435: duke@435: # Based on BUILDARCH we add some flags and select the default compiler name duke@435: !if "$(BUILDARCH)" == "ia64" duke@435: MACHINE=IA64 duke@435: DEFAULT_COMPILER_NAME=VS2003 duke@435: CPP_FLAGS=$(CPP_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64" duke@435: !endif duke@435: duke@435: !if "$(BUILDARCH)" == "amd64" duke@435: MACHINE=AMD64 duke@435: DEFAULT_COMPILER_NAME=VS2005 duke@435: CPP_FLAGS=$(CPP_FLAGS) /D "_LP64" /D "AMD64" duke@435: LP64=1 duke@435: !endif duke@435: duke@435: !if "$(BUILDARCH)" == "i486" duke@435: MACHINE=I386 duke@435: DEFAULT_COMPILER_NAME=VS2003 duke@435: CPP_FLAGS=$(CPP_FLAGS) /D "IA32" duke@435: !endif duke@435: duke@435: # Sanity check, this is the default if not amd64, ia64, or i486 duke@435: !ifndef DEFAULT_COMPILER_NAME duke@435: CPP=ARCH_ERROR duke@435: !endif duke@435: duke@435: # MSC_VER is a 4 digit number that tells us what compiler is being used, it is duke@435: # generated when the local.make file is created by the script gen_msc_ver.sh. duke@435: # If MSC_VER is set, it overrides the above default setting. duke@435: # But it should be set. duke@435: # Possible values: duke@435: # 1200 is for VC6 duke@435: # 1300 and 1310 is VS2003 or VC7 duke@435: # 1399 is our fake number for the VS2005 compiler that really isn't 1400 duke@435: # 1400 is for VS2005 duke@435: # Do not confuse this MSC_VER with the predefined macro _MSC_VER that the duke@435: # compiler provides, when MSC_VER==1399, _MSC_VER will be 1400. duke@435: # Normally they are the same, but a pre-release of the VS2005 compilers duke@435: # in the Windows 64bit Platform SDK said it was 1400 when it was really duke@435: # closer to VS2003 in terms of option spellings, so we use 1399 for that duke@435: # 1400 version that really isn't 1400. duke@435: # See the file gen_msc_ver.sh for more info. duke@435: !if "x$(MSC_VER)" == "x" duke@435: COMPILER_NAME=$(DEFAULT_COMPILER_NAME) duke@435: !else duke@435: !if "$(MSC_VER)" == "1200" duke@435: COMPILER_NAME=VC6 duke@435: !endif duke@435: !if "$(MSC_VER)" == "1300" duke@435: COMPILER_NAME=VS2003 duke@435: !endif duke@435: !if "$(MSC_VER)" == "1310" duke@435: COMPILER_NAME=VS2003 duke@435: !endif duke@435: !if "$(MSC_VER)" == "1399" duke@435: # Compiler might say 1400, but if it's 14.00.30701, it isn't really VS2005 duke@435: COMPILER_NAME=VS2003 duke@435: !endif duke@435: !if "$(MSC_VER)" == "1400" duke@435: COMPILER_NAME=VS2005 duke@435: !endif duke@435: !endif duke@435: duke@435: # Add what version of the compiler we think this is to the compile line duke@435: CPP_FLAGS=$(CPP_FLAGS) /D "MSC_VER=$(MSC_VER)" duke@435: duke@435: # By default, we do not want to use the debug version of the msvcrt.dll file duke@435: # but if MFC_DEBUG is defined in the environment it will be used. duke@435: MS_RUNTIME_OPTION = /MD duke@435: !if "$(MFC_DEBUG)" == "true" duke@435: MS_RUNTIME_OPTION = /MTd /D "_DEBUG" duke@435: !endif duke@435: duke@435: # Always add the _STATIC_CPPLIB flag duke@435: STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB duke@435: MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION) duke@435: CPP_FLAGS=$(CPP_FLAGS) $(MS_RUNTIME_OPTION) duke@435: duke@435: # How /GX option is spelled duke@435: GX_OPTION = /GX duke@435: duke@435: # Optimization settings for various versions of the compilers and types of duke@435: # builds. Three basic sets of settings: product, fastdebug, and debug. duke@435: # These get added into CPP_FLAGS as needed by other makefiles. duke@435: !if "$(COMPILER_NAME)" == "VC6" duke@435: PRODUCT_OPT_OPTION = /Ox /Os /Gy /GF duke@435: FASTDEBUG_OPT_OPTION = /Ox /Os /Gy /GF duke@435: DEBUG_OPT_OPTION = /Od duke@435: !endif duke@435: duke@435: !if "$(COMPILER_NAME)" == "VS2003" duke@435: PRODUCT_OPT_OPTION = /O2 duke@435: FASTDEBUG_OPT_OPTION = /O2 duke@435: DEBUG_OPT_OPTION = /Od duke@435: !endif duke@435: duke@435: !if "$(COMPILER_NAME)" == "VS2005" duke@435: PRODUCT_OPT_OPTION = /O2 duke@435: FASTDEBUG_OPT_OPTION = /O2 duke@435: DEBUG_OPT_OPTION = /Od duke@435: GX_OPTION = /EHsc duke@435: # This VS2005 compiler has /GS as a default and requires bufferoverflowU.lib duke@435: # on the link command line, otherwise we get missing __security_check_cookie duke@435: # externals at link time. Even with /GS-, you need bufferoverflowU.lib. duke@435: # NOTE: Currently we decided to not use /GS- duke@435: BUFFEROVERFLOWLIB = bufferoverflowU.lib duke@435: LINK_FLAGS = $(LINK_FLAGS) $(BUFFEROVERFLOWLIB) duke@435: !if "$(BUILDARCH)" == "i486" duke@435: # VS2005 on x86 restricts the use of certain libc functions without this duke@435: CPP_FLAGS=$(CPP_FLAGS) /D _CRT_SECURE_NO_DEPRECATE duke@435: !endif duke@435: !endif duke@435: duke@435: # Compile for space above time. duke@435: !if "$(Variant)" == "kernel" duke@435: PRODUCT_OPT_OPTION = /O1 duke@435: FASTDEBUG_OPT_OPTION = /O1 duke@435: DEBUG_OPT_OPTION = /Od duke@435: !endif duke@435: duke@435: # If NO_OPTIMIZATIONS is defined in the environment, turn everything off duke@435: !ifdef NO_OPTIMIZATIONS duke@435: PRODUCT_OPT_OPTION = $(DEBUG_OPT_OPTION) duke@435: FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION) duke@435: !endif duke@435: duke@435: # Generic linker settings duke@435: LINK=link.exe duke@435: LINK_FLAGS= $(LINK_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \ duke@435: comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \ duke@435: uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \ duke@435: /opt:ICF,8 /map /debug duke@435: duke@435: # Resource compiler settings duke@435: RC=rc.exe duke@435: RC_FLAGS=/D "HS_VER=$(HS_VER)" \ duke@435: /D "HS_DOTVER=$(HS_DOTVER)" \ duke@435: /D "HS_BUILD_ID=$(HS_BUILD_ID)" \ duke@435: /D "JDK_VER=$(JDK_VER)" \ duke@435: /D "JDK_DOTVER=$(JDK_DOTVER)" \ duke@435: /D "HS_COMPANY=$(HS_COMPANY)" \ duke@435: /D "HS_FILEDESC=$(HS_FILEDESC)" \ duke@435: /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \ duke@435: /D "HS_FNAME=$(HS_FNAME)" \ duke@435: /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \ duke@435: /D "HS_NAME=$(HS_NAME)" duke@435: duke@435: # Need this to match the CPP_FLAGS settings duke@435: !if "$(MFC_DEBUG)" == "true" duke@435: RC_FLAGS = $(RC_FLAGS) /D "_DEBUG" duke@435: !endif duke@435: