make/windows/makefiles/compile.make

Tue, 11 May 2010 14:35:43 -0700

author
prr
date
Tue, 11 May 2010 14:35:43 -0700
changeset 1840
fb57d4cf76c2
parent 1279
bd02caa94611
child 1907
c18cbe5936b8
permissions
-rw-r--r--

6931180: Migration to recent versions of MS Platform SDK
6951582: Build problems on win64
Summary: Changes to enable building JDK7 with Microsoft Visual Studio 2010
Reviewed-by: ohair, art, ccheung, dcubed

     1 #
     2 # Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.
     8 #
     9 # This code is distributed in the hope that it will be useful, but WITHOUT
    10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12 # version 2 for more details (a copy is included in the LICENSE file that
    13 # accompanied this code).
    14 #
    15 # You should have received a copy of the GNU General Public License version
    16 # 2 along with this work; if not, write to the Free Software Foundation,
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 #
    19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20 # CA 95054 USA or visit www.sun.com if you need additional information or
    21 # have any questions.
    22 #  
    23 #
    25 # Generic compiler settings
    26 CPP=cl.exe
    28 # CPP Flags: (these vary slightly from VC6->VS2003->VS2005 compilers)
    29 #   /nologo   Supress copyright message at every cl.exe startup
    30 #   /W3       Warning level 3
    31 #   /Zi       Include debugging information
    32 #   /WX       Treat any warning error as a fatal error
    33 #   /MD       Use dynamic multi-threaded runtime (msvcrt.dll or msvc*NN.dll)
    34 #   /MTd      Use static multi-threaded runtime debug versions
    35 #   /O1       Optimize for size (/Os), skips /Oi
    36 #   /O2       Optimize for speed (/Ot), adds /Oi to /O1
    37 #   /Ox       Old "all optimizations flag" for VC6 (in /O1)
    38 #   /Oy       Use frame pointer register as GP reg (in /Ox and /O1)
    39 #   /GF       Merge string constants and put in read-only memory (in /O1)
    40 #   /Gy       Func level link (in /O1, allows for link-time func ordering)
    41 #   /Gs       Inserts stack probes (in /O1)
    42 #   /GS       Inserts security stack checks in some functions (VS2005 default)
    43 #   /Oi       Use intrinsics (in /O2)
    44 #   /Od       Disable all optimizations
    45 #
    46 # NOTE: Normally following any of the above with a '-' will turn off that flag
    47 #
    48 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
    49 # omission.)  This has little to no effect on performance while vastly
    50 # improving the quality of crash log stack traces involving jvm.dll.
    52 # These are always used in all compiles
    53 CPP_FLAGS=/nologo /W3 /WX
    55 # Let's add debug information always too.
    56 CPP_FLAGS=$(CPP_FLAGS) /Zi
    58 # Based on BUILDARCH we add some flags and select the default compiler name
    59 !if "$(BUILDARCH)" == "ia64"
    60 MACHINE=IA64
    61 DEFAULT_COMPILER_NAME=VS2003
    62 CPP_FLAGS=$(CPP_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64"
    63 !endif
    65 !if "$(BUILDARCH)" == "amd64"
    66 MACHINE=AMD64
    67 DEFAULT_COMPILER_NAME=VS2005
    68 CPP_FLAGS=$(CPP_FLAGS) /D "_LP64" /D "AMD64"
    69 LP64=1
    70 !endif
    72 !if "$(BUILDARCH)" == "i486"
    73 MACHINE=I386
    74 DEFAULT_COMPILER_NAME=VS2003
    75 CPP_FLAGS=$(CPP_FLAGS) /D "IA32"
    76 !endif
    78 # Sanity check, this is the default if not amd64, ia64, or i486
    79 !ifndef DEFAULT_COMPILER_NAME
    80 CPP=ARCH_ERROR
    81 !endif
    83 # MSC_VER is a 4 digit number that tells us what compiler is being used
    84 #    and is generated when the local.make file is created by build.make
    85 #    via the script get_msc_ver.sh
    86 #
    87 #    If MSC_VER is set, it overrides the above default setting.
    88 #    But it should be set.
    89 #    Possible values:
    90 #      1200 is for VC6
    91 #      1300 and 1310 is VS2003 or VC7
    92 #      1399 is our fake number for the VS2005 compiler that really isn't 1400
    93 #      1400 is for VS2005
    94 #      1500 is for VS2008
    95 #      1600 is for VS2010
    96 #    Do not confuse this MSC_VER with the predefined macro _MSC_VER that the
    97 #    compiler provides, when MSC_VER==1399, _MSC_VER will be 1400.
    98 #    Normally they are the same, but a pre-release of the VS2005 compilers
    99 #    in the Windows 64bit Platform SDK said it was 1400 when it was really
   100 #    closer to VS2003 in terms of option spellings, so we use 1399 for that
   101 #    1400 version that really isn't 1400.
   102 #    See the file get_msc_ver.sh for more info.
   103 !if "x$(MSC_VER)" == "x"
   104 COMPILER_NAME=$(DEFAULT_COMPILER_NAME)
   105 !else
   106 !if "$(MSC_VER)" == "1200"
   107 COMPILER_NAME=VC6
   108 !endif
   109 !if "$(MSC_VER)" == "1300"
   110 COMPILER_NAME=VS2003
   111 !endif
   112 !if "$(MSC_VER)" == "1310"
   113 COMPILER_NAME=VS2003
   114 !endif
   115 !if "$(MSC_VER)" == "1399"
   116 # Compiler might say 1400, but if it's 14.00.30701, it isn't really VS2005
   117 COMPILER_NAME=VS2003
   118 !endif
   119 !if "$(MSC_VER)" == "1400"
   120 COMPILER_NAME=VS2005
   121 !endif
   122 !if "$(MSC_VER)" == "1500"
   123 COMPILER_NAME=VS2008
   124 !endif
   125 !if "$(MSC_VER)" == "1600"
   126 COMPILER_NAME=VS2010
   127 !endif
   128 !endif
   130 # Add what version of the compiler we think this is to the compile line
   131 CPP_FLAGS=$(CPP_FLAGS) /D "MSC_VER=$(MSC_VER)"
   133 # By default, we do not want to use the debug version of the msvcrt.dll file
   134 #   but if MFC_DEBUG is defined in the environment it will be used.
   135 MS_RUNTIME_OPTION = /MD
   136 !if "$(MFC_DEBUG)" == "true"
   137 MS_RUNTIME_OPTION = /MTd /D "_DEBUG"
   138 !endif
   140 # Always add the _STATIC_CPPLIB flag
   141 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB
   142 MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION)
   143 CPP_FLAGS=$(CPP_FLAGS) $(MS_RUNTIME_OPTION)
   145 # How /GX option is spelled
   146 GX_OPTION = /GX
   148 # Optimization settings for various versions of the compilers and types of
   149 #    builds. Three basic sets of settings: product, fastdebug, and debug.
   150 #    These get added into CPP_FLAGS as needed by other makefiles.
   151 !if "$(COMPILER_NAME)" == "VC6"
   152 PRODUCT_OPT_OPTION   = /Ox /Os /Gy /GF
   153 FASTDEBUG_OPT_OPTION = /Ox /Os /Gy /GF
   154 DEBUG_OPT_OPTION     = /Od
   155 !endif
   157 !if "$(COMPILER_NAME)" == "VS2003"
   158 PRODUCT_OPT_OPTION   = /O2 /Oy-
   159 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   160 DEBUG_OPT_OPTION     = /Od
   161 !endif
   163 !if "$(COMPILER_NAME)" == "VS2005"
   164 PRODUCT_OPT_OPTION   = /O2 /Oy-
   165 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   166 DEBUG_OPT_OPTION     = /Od
   167 GX_OPTION = /EHsc
   168 # This VS2005 compiler has /GS as a default and requires bufferoverflowU.lib 
   169 #    on the link command line, otherwise we get missing __security_check_cookie
   170 #    externals at link time. Even with /GS-, you need bufferoverflowU.lib.
   171 #    NOTE: Currently we decided to not use /GS-
   172 BUFFEROVERFLOWLIB = bufferoverflowU.lib
   173 LINK_FLAGS = /manifest $(LINK_FLAGS) $(BUFFEROVERFLOWLIB)
   174 # Manifest Tool - used in VS2005 and later to adjust manifests stored
   175 # as resources inside build artifacts.
   176 MT=mt.exe
   177 !endif
   179 !if "$(COMPILER_NAME)" == "VS2008"
   180 PRODUCT_OPT_OPTION   = /O2 /Oy-
   181 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   182 DEBUG_OPT_OPTION     = /Od
   183 GX_OPTION = /EHsc
   184 LINK_FLAGS = /manifest $(LINK_FLAGS)
   185 # Manifest Tool - used in VS2005 and later to adjust manifests stored
   186 # as resources inside build artifacts.
   187 MT=mt.exe
   188 !endif
   190 !if "$(COMPILER_NAME)" == "VS2010"
   191 PRODUCT_OPT_OPTION   = /O2 /Oy-
   192 FASTDEBUG_OPT_OPTION = /O2 /Oy-
   193 DEBUG_OPT_OPTION     = /Od
   194 GX_OPTION = /EHsc
   195 LINK_FLAGS = /manifest $(LINK_FLAGS)
   196 # Manifest Tool - used in VS2005 and later to adjust manifests stored
   197 # as resources inside build artifacts.
   198 MT=mt.exe
   199 !endif
   201 # Compile for space above time.
   202 !if "$(Variant)" == "kernel"
   203 PRODUCT_OPT_OPTION   = /O1 /Oy-
   204 FASTDEBUG_OPT_OPTION = /O1 /Oy-
   205 DEBUG_OPT_OPTION     = /Od
   206 !endif
   208 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
   209 !ifdef NO_OPTIMIZATIONS
   210 PRODUCT_OPT_OPTION   = $(DEBUG_OPT_OPTION)
   211 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
   212 !endif
   214 # Generic linker settings
   215 LINK=link.exe
   216 LINK_FLAGS= $(LINK_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
   217  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
   218  uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \
   219  /opt:ICF,8 /map /debug
   221 # Resource compiler settings
   222 RC=rc.exe
   223 RC_FLAGS=/D "HS_VER=$(HS_VER)" \
   224 	 /D "HS_DOTVER=$(HS_DOTVER)" \
   225 	 /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
   226 	 /D "JDK_VER=$(JDK_VER)" \
   227 	 /D "JDK_DOTVER=$(JDK_DOTVER)" \
   228 	 /D "HS_COMPANY=$(HS_COMPANY)" \
   229 	 /D "HS_FILEDESC=$(HS_FILEDESC)" \
   230 	 /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \
   231 	 /D "HS_FNAME=$(HS_FNAME)" \
   232 	 /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \
   233 	 /D "HS_NAME=$(HS_NAME)"
   235 # Need this to match the CPP_FLAGS settings
   236 !if "$(MFC_DEBUG)" == "true"
   237 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
   238 !endif

mercurial