hotspot/make/windows/makefiles/compile.make
changeset 33957 39113ae98993
parent 30029 1cea5275d091
child 33976 160793725e6f
equal deleted inserted replaced
30850:56166ce66037 33957:39113ae98993
     1 #
     1 #
     2 # Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     2 # Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     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
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.
     7 # published by the Free Software Foundation.
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18 #
    18 #
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20 # or visit www.oracle.com if you need additional information or have any
    20 # or visit www.oracle.com if you need additional information or have any
    21 # questions.
    21 # questions.
    22 #  
    22 #
    23 #
    23 #
    24 
    24 
    25 # Generic compiler settings
    25 # Generic compiler settings
    26 !if "x$(CXX)" == "x"
    26 !if "x$(CXX)" == "x"
    27 CXX=cl.exe
    27 CXX=cl.exe
   164 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
   164 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
   165 LD_FLAGS= $(LD_FLAGS) /map /debug
   165 LD_FLAGS= $(LD_FLAGS) /map /debug
   166 !endif
   166 !endif
   167 
   167 
   168 
   168 
   169 !if $(MSC_VER) >= 1600 
   169 !if $(MSC_VER) >= 1600
   170 LD_FLAGS= $(LD_FLAGS) psapi.lib
   170 LD_FLAGS= $(LD_FLAGS) psapi.lib
   171 !endif
   171 !endif
   172 
   172 
   173 # Resource compiler settings
   173 # Resource compiler settings
   174 !if "x$(RC)" == "x"
   174 !if "x$(RC)" == "x"
   188 
   188 
   189 # Need this to match the CXX_FLAGS settings
   189 # Need this to match the CXX_FLAGS settings
   190 !if "$(MFC_DEBUG)" == "true"
   190 !if "$(MFC_DEBUG)" == "true"
   191 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
   191 RC_FLAGS = $(RC_FLAGS) /D "_DEBUG"
   192 !endif
   192 !endif
   193