build/windows/makefiles/compile.make

Sat, 01 Dec 2007 00:00:00 +0000

author
duke
date
Sat, 01 Dec 2007 00:00:00 +0000
changeset 435
a61af66fc99e
child 492
ff0979201b06
permissions
-rw-r--r--

Initial load

     1 #
     2 # Copyright 1997-2007 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*71.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
    48 # These are always used in all compiles
    49 CPP_FLAGS=/nologo /W3 /WX
    51 # Let's add debug information always too.
    52 CPP_FLAGS=$(CPP_FLAGS) /Zi
    54 # Based on BUILDARCH we add some flags and select the default compiler name
    55 !if "$(BUILDARCH)" == "ia64"
    56 MACHINE=IA64
    57 DEFAULT_COMPILER_NAME=VS2003
    58 CPP_FLAGS=$(CPP_FLAGS) /D "CC_INTERP" /D "_LP64" /D "IA64"
    59 !endif
    61 !if "$(BUILDARCH)" == "amd64"
    62 MACHINE=AMD64
    63 DEFAULT_COMPILER_NAME=VS2005
    64 CPP_FLAGS=$(CPP_FLAGS) /D "_LP64" /D "AMD64"
    65 LP64=1
    66 !endif
    68 !if "$(BUILDARCH)" == "i486"
    69 MACHINE=I386
    70 DEFAULT_COMPILER_NAME=VS2003
    71 CPP_FLAGS=$(CPP_FLAGS) /D "IA32"
    72 !endif
    74 # Sanity check, this is the default if not amd64, ia64, or i486
    75 !ifndef DEFAULT_COMPILER_NAME
    76 CPP=ARCH_ERROR
    77 !endif
    79 # MSC_VER is a 4 digit number that tells us what compiler is being used, it is
    80 #    generated when the local.make file is created by the script gen_msc_ver.sh.
    81 #    If MSC_VER is set, it overrides the above default setting.
    82 #    But it should be set.
    83 #    Possible values:
    84 #      1200 is for VC6
    85 #      1300 and 1310 is VS2003 or VC7
    86 #      1399 is our fake number for the VS2005 compiler that really isn't 1400
    87 #      1400 is for VS2005
    88 #    Do not confuse this MSC_VER with the predefined macro _MSC_VER that the
    89 #    compiler provides, when MSC_VER==1399, _MSC_VER will be 1400.
    90 #    Normally they are the same, but a pre-release of the VS2005 compilers
    91 #    in the Windows 64bit Platform SDK said it was 1400 when it was really
    92 #    closer to VS2003 in terms of option spellings, so we use 1399 for that
    93 #    1400 version that really isn't 1400.
    94 #    See the file gen_msc_ver.sh for more info.
    95 !if "x$(MSC_VER)" == "x"
    96 COMPILER_NAME=$(DEFAULT_COMPILER_NAME)
    97 !else
    98 !if "$(MSC_VER)" == "1200"
    99 COMPILER_NAME=VC6
   100 !endif
   101 !if "$(MSC_VER)" == "1300"
   102 COMPILER_NAME=VS2003
   103 !endif
   104 !if "$(MSC_VER)" == "1310"
   105 COMPILER_NAME=VS2003
   106 !endif
   107 !if "$(MSC_VER)" == "1399"
   108 # Compiler might say 1400, but if it's 14.00.30701, it isn't really VS2005
   109 COMPILER_NAME=VS2003
   110 !endif
   111 !if "$(MSC_VER)" == "1400"
   112 COMPILER_NAME=VS2005
   113 !endif
   114 !endif
   116 # Add what version of the compiler we think this is to the compile line
   117 CPP_FLAGS=$(CPP_FLAGS) /D "MSC_VER=$(MSC_VER)"
   119 # By default, we do not want to use the debug version of the msvcrt.dll file
   120 #   but if MFC_DEBUG is defined in the environment it will be used.
   121 MS_RUNTIME_OPTION = /MD
   122 !if "$(MFC_DEBUG)" == "true"
   123 MS_RUNTIME_OPTION = /MTd /D "_DEBUG"
   124 !endif
   126 # Always add the _STATIC_CPPLIB flag
   127 STATIC_CPPLIB_OPTION = /D _STATIC_CPPLIB
   128 MS_RUNTIME_OPTION = $(MS_RUNTIME_OPTION) $(STATIC_CPPLIB_OPTION)
   129 CPP_FLAGS=$(CPP_FLAGS) $(MS_RUNTIME_OPTION)
   131 # How /GX option is spelled
   132 GX_OPTION = /GX
   134 # Optimization settings for various versions of the compilers and types of
   135 #    builds. Three basic sets of settings: product, fastdebug, and debug.
   136 #    These get added into CPP_FLAGS as needed by other makefiles.
   137 !if "$(COMPILER_NAME)" == "VC6"
   138 PRODUCT_OPT_OPTION   = /Ox /Os /Gy /GF
   139 FASTDEBUG_OPT_OPTION = /Ox /Os /Gy /GF
   140 DEBUG_OPT_OPTION     = /Od
   141 !endif
   143 !if "$(COMPILER_NAME)" == "VS2003"
   144 PRODUCT_OPT_OPTION   = /O2
   145 FASTDEBUG_OPT_OPTION = /O2
   146 DEBUG_OPT_OPTION     = /Od
   147 !endif
   149 !if "$(COMPILER_NAME)" == "VS2005"
   150 PRODUCT_OPT_OPTION   = /O2
   151 FASTDEBUG_OPT_OPTION = /O2
   152 DEBUG_OPT_OPTION     = /Od
   153 GX_OPTION = /EHsc
   154 # This VS2005 compiler has /GS as a default and requires bufferoverflowU.lib 
   155 #    on the link command line, otherwise we get missing __security_check_cookie
   156 #    externals at link time. Even with /GS-, you need bufferoverflowU.lib.
   157 #    NOTE: Currently we decided to not use /GS-
   158 BUFFEROVERFLOWLIB = bufferoverflowU.lib
   159 LINK_FLAGS = $(LINK_FLAGS) $(BUFFEROVERFLOWLIB)
   160 !if "$(BUILDARCH)" == "i486"
   161 # VS2005 on x86 restricts the use of certain libc functions without this
   162 CPP_FLAGS=$(CPP_FLAGS) /D _CRT_SECURE_NO_DEPRECATE
   163 !endif
   164 !endif
   166 # Compile for space above time.
   167 !if "$(Variant)" == "kernel"
   168 PRODUCT_OPT_OPTION   = /O1
   169 FASTDEBUG_OPT_OPTION = /O1
   170 DEBUG_OPT_OPTION     = /Od
   171 !endif
   173 # If NO_OPTIMIZATIONS is defined in the environment, turn everything off
   174 !ifdef NO_OPTIMIZATIONS
   175 PRODUCT_OPT_OPTION   = $(DEBUG_OPT_OPTION)
   176 FASTDEBUG_OPT_OPTION = $(DEBUG_OPT_OPTION)
   177 !endif
   179 # Generic linker settings
   180 LINK=link.exe
   181 LINK_FLAGS= $(LINK_FLAGS) kernel32.lib user32.lib gdi32.lib winspool.lib \
   182  comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib \
   183  uuid.lib Wsock32.lib winmm.lib /nologo /machine:$(MACHINE) /opt:REF \
   184  /opt:ICF,8 /map /debug
   186 # Resource compiler settings
   187 RC=rc.exe
   188 RC_FLAGS=/D "HS_VER=$(HS_VER)" \
   189 	 /D "HS_DOTVER=$(HS_DOTVER)" \
   190 	 /D "HS_BUILD_ID=$(HS_BUILD_ID)" \
   191 	 /D "JDK_VER=$(JDK_VER)" \
   192 	 /D "JDK_DOTVER=$(JDK_DOTVER)" \
   193 	 /D "HS_COMPANY=$(HS_COMPANY)" \
   194 	 /D "HS_FILEDESC=$(HS_FILEDESC)" \
   195 	 /D "HS_COPYRIGHT=$(HS_COPYRIGHT)" \
   196 	 /D "HS_FNAME=$(HS_FNAME)" \
   197 	 /D "HS_INTERNAL_NAME=$(HS_INTERNAL_NAME)" \
   198 	 /D "HS_NAME=$(HS_NAME)"
   200 # Need this to match the CPP_FLAGS settings
   201 !if "$(MFC_DEBUG)" == "true"
   202 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
   203 !endif

mercurial