Changeset 278 for trunk/openjdk/hotspot/make/windows
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/hotspot/make/windows/README
r2 r278 1 Copyright (c) 200 7 Sun Microsystems, Inc. All Rights Reserved.1 Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved. 2 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 3 … … 16 16 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17 17 18 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,19 CA 95054 USA or visit www.sun.com if you need additional information or 20 have anyquestions.18 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 or visit www.oracle.com if you need additional information or have any 20 questions. 21 21 22 22 ________________________________________________________________________________ -
trunk/openjdk/hotspot/make/windows/build.bat
r2 r278 1 1 @echo off 2 2 REM 3 REM Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.3 REM Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. 4 4 REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 REM … … 18 18 REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 19 REM 20 REM Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,21 REM CA 95054 USA or visit www.sun.com if you need additional information or22 REM have anyquestions.20 REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 REM or visit www.oracle.com if you need additional information or have any 22 REM questions. 23 23 REM 24 24 REM … … 28 28 REM Since we don't have uname and we could be cross-compiling, 29 29 REM Use the compiler to determine which ARCH we are building 30 REM 31 REM Note: Running this batch file from the Windows command shell requires 32 REM that "grep" be accessible on the PATH. An MKS install does this. 30 33 REM 31 34 cl 2>&1 | grep "IA-64" >NUL … … 58 61 if "%1" == "debug" goto test1 59 62 if "%1" == "fastdebug" goto test1 63 if "%1" == "tree" goto test1 60 64 goto usage 61 65 62 66 :test1 63 67 if "%2" == "core" goto test2 64 if "%2" == "kernel" goto test268 if "%2" == "kernel" goto test2 65 69 if "%2" == "compiler1" goto test2 66 70 if "%2" == "compiler2" goto test2 … … 71 75 72 76 :test2 77 if "%1" == "tree" goto build_tree 73 78 REM check_j2se_version 74 79 REM jvmti.make requires J2SE 1.4.x or newer. … … 94 99 goto end 95 100 101 :build_tree 102 nmake -f %3/make/windows/build.make Variant=%2 WorkSpace=%3 BootStrapDir=%4 BuildUser="%USERNAME%" HOTSPOT_BUILD_VERSION="%5" %1 103 goto end 104 96 105 :usage 97 106 echo Usage: build flavor version workspace bootstrap_dir [build_id] [windbg_home] … … 101 110 echo version is "core", "kernel", "compiler1", "compiler2", or "tiered", 102 111 echo workspace is source directory without trailing slash, 103 echo bootstrap_dir is a full path to echoa JDK in which bin/java104 echo and bin/javac are present and working, and echobuild_id is an112 echo bootstrap_dir is a full path to a JDK in which bin/java 113 echo and bin/javac are present and working, and build_id is an 105 114 echo optional build identifier displayed by java -version 115 exit /b 1 106 116 107 117 :end 118 exit /b %errorlevel% -
trunk/openjdk/hotspot/make/windows/build.make
r2 r278 1 1 # 2 # Copyright 1998-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # … … 27 27 # environment variables (Variant, WorkSpace, BootStrapDir, BuildUser, HOTSPOT_BUILD_VERSION) 28 28 # are passed in as command line arguments. 29 30 # Note: Running nmake or build.bat from the Windows command shell requires 31 # that "sh" be accessible on the PATH. An MKS install does this. 29 32 30 33 # SA components are built if BUILD_WIN_SA=1 is specified. … … 233 236 cd $(variantDir) 234 237 nmake -nologo -f $(WorkSpace)\make\windows\makefiles\top.make BUILD_FLAVOR=product DEVELOP=1 ARCH=$(ARCH) 238 239 # target to create just the directory structure 240 tree: checks $(variantDir) $(variantDir)\local.make sanity 241 mkdir $(variantDir)\product 242 mkdir $(variantDir)\debug 243 mkdir $(variantDir)\fastdebug 235 244 236 245 sanity: -
trunk/openjdk/hotspot/make/windows/build_vm_def.sh
r2 r278 1 1 # 2 # Copyright 2000-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # … … 59 59 60 60 if [ "x$LINK_VER" != "x800" -a "x$LINK_VER" != "x900" ]; then 61 $DUMPBIN /symbols *.obj | "$GREP" "??_7.*@@6B@" | "$ AWK" '{print $7}' | "$SORT" | "$UNIQ" > vm2.def61 $DUMPBIN /symbols *.obj | "$GREP" "??_7.*@@6B@" | "$GREP" -v "type_info" | "$AWK" '{print $7}' | "$SORT" | "$UNIQ" > vm2.def 62 62 else 63 63 # Can't use pipes when calling cl.exe or link.exe from IDE. Using transit file vm3.def 64 64 $DUMPBIN /OUT:vm3.def /symbols *.obj 65 "$CAT" vm3.def | "$GREP" "??_7.*@@6B@" | "$ AWK" '{print $7}' | "$SORT" | "$UNIQ" > vm2.def65 "$CAT" vm3.def | "$GREP" "??_7.*@@6B@" | "$GREP" -v "type_info" | "$AWK" '{print $7}' | "$SORT" | "$UNIQ" > vm2.def 66 66 "$RM" -f vm3.def 67 67 fi -
trunk/openjdk/hotspot/make/windows/create.bat
r2 r278 1 1 @echo off 2 2 REM 3 REM Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved.3 REM Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved. 4 4 REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 REM … … 18 18 REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 19 REM 20 REM Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,21 REM CA 95054 USA or visit www.sun.com if you need additional information or22 REM have anyquestions.20 REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 REM or visit www.oracle.com if you need additional information or have any 22 REM questions. 23 23 REM 24 24 REM … … 36 36 REM Since we don't have uname and we could be cross-compiling, 37 37 REM Use the compiler to determine which ARCH we are building 38 REM 39 REM Note: Running this batch file from the Windows command shell requires 40 REM that "grep" be accessible on the PATH. An MKS install does this. 38 41 REM 39 42 cl 2>&1 | grep "IA-64" >NUL -
trunk/openjdk/hotspot/make/windows/cross_build.bat
r2 r278 1 1 @echo off 2 2 REM 3 REM Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved.3 REM Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved. 4 4 REM DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 REM … … 18 18 REM Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 19 REM 20 REM Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,21 REM CA 95054 USA or visit www.sun.com if you need additional information or22 REM have anyquestions.20 REM Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 REM or visit www.oracle.com if you need additional information or have any 22 REM questions. 23 23 REM 24 24 REM -
trunk/openjdk/hotspot/make/windows/get_msc_ver.sh
r2 r278 1 1 # 2 # Copyright 2005-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2005, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # 24 25 set -e 24 26 25 27 # This shell script echoes "MSC_VER=<munged version of cl>" … … 39 41 40 42 if [ "x$HotSpotMksHome" != "x" ]; then 41 MKS_HOME="$HotSpotMksHome"43 TOOL_DIR="$HotSpotMksHome" 42 44 else 43 SH=`which sh` 44 MKS_HOME=`dirname "$SH"` 45 # HotSpotMksHome is not set so use the directory that contains "sh". 46 # This works with both MKS and Cygwin. 47 SH=`which sh` 48 TOOL_DIR=`dirname "$SH"` 45 49 fi 46 50 47 HEAD="$MKS_HOME/head" 48 ECHO="$MKS_HOME/echo" 49 EXPR="$MKS_HOME/expr" 50 CUT="$MKS_HOME/cut" 51 SED="$MKS_HOME/sed" 51 DIRNAME="$TOOL_DIR/dirname" 52 HEAD="$TOOL_DIR/head" 53 ECHO="$TOOL_DIR/echo" 54 EXPR="$TOOL_DIR/expr" 55 CUT="$TOOL_DIR/cut" 56 SED="$TOOL_DIR/sed" 52 57 53 58 if [ "x$FORCE_MSC_VER" != "x" ]; then … … 71 76 echo "LINK_VER=$FORCE_LINK_VER" 72 77 else 73 LINK_VER_RAW=`link 2>&1 | "$HEAD" -n 1 | "$SED" 's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'` 78 # use the "link" command that is co-located with the "cl" command 79 cl_cmd=`which cl` 80 if [ "x$cl_cmd" != "x" ]; then 81 link_cmd=`$DIRNAME "$cl_cmd"`/link 82 else 83 # which can't find "cl" so just use which ever "link" we find 84 link_cmd="link" 85 fi 86 LINK_VER_RAW=`"$link_cmd" 2>&1 | "$HEAD" -n 1 | "$SED" 's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'` 74 87 LINK_VER_MAJOR=`"$ECHO" $LINK_VER_RAW | "$CUT" -d'.' -f1` 75 88 LINK_VER_MINOR=`"$ECHO" $LINK_VER_RAW | "$CUT" -d'.' -f2` -
trunk/openjdk/hotspot/make/windows/makefiles/adlc.make
r2 r278 1 1 # 2 # Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/compile.make
r2 r278 1 1 # 2 # Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # … … 93 93 # 1400 is for VS2005 94 94 # 1500 is for VS2008 95 # 1600 is for VS2010 95 96 # Do not confuse this MSC_VER with the predefined macro _MSC_VER that the 96 97 # compiler provides, when MSC_VER==1399, _MSC_VER will be 1400. … … 122 123 COMPILER_NAME=VS2008 123 124 !endif 125 !if "$(MSC_VER)" == "1600" 126 COMPILER_NAME=VS2010 127 !endif 124 128 !endif 125 129 … … 174 178 175 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 189 190 !if "$(COMPILER_NAME)" == "VS2010" 176 191 PRODUCT_OPT_OPTION = /O2 /Oy- 177 192 FASTDEBUG_OPT_OPTION = /O2 /Oy- -
trunk/openjdk/hotspot/make/windows/makefiles/debug.make
r2 r278 1 1 # 2 # Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/defs.make
r2 r278 1 1 # 2 # Copyright 2006-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # … … 33 33 34 34 # Need PLATFORM (os-arch combo names) for jdk and hotspot, plus libarch name 35 ifeq ($(ARCH_DATA_MODEL),32) 36 ARCH_DATA_MODEL=32 37 PLATFORM=windows-i586 38 VM_PLATFORM=windows_i486 39 HS_ARCH=x86 40 MAKE_ARGS += ARCH=x86 41 MAKE_ARGS += BUILDARCH=i486 42 MAKE_ARGS += Platform_arch=x86 43 MAKE_ARGS += Platform_arch_model=x86_32 44 endif 45 35 46 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) x86),) 36 47 ARCH_DATA_MODEL=32 … … 44 55 endif 45 56 46 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) ia64),) 47 ARCH_DATA_MODEL=64 48 PLATFORM=windows-ia64 49 VM_PLATFORM=windows_ia64 50 HS_ARCH=ia64 51 MAKE_ARGS += LP64=1 52 MAKE_ARGS += ARCH=ia64 53 MAKE_ARGS += BUILDARCH=ia64 54 MAKE_ARGS += Platform_arch=ia64 55 MAKE_ARGS += Platform_arch_model=ia64 56 endif 57 58 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) AMD64),) 59 ARCH_DATA_MODEL=64 60 PLATFORM=windows-amd64 61 VM_PLATFORM=windows_amd64 62 HS_ARCH=x86 63 MAKE_ARGS += LP64=1 64 MAKE_ARGS += ARCH=x86 65 MAKE_ARGS += BUILDARCH=amd64 66 MAKE_ARGS += Platform_arch=x86 67 MAKE_ARGS += Platform_arch_model=x86_64 57 ifneq ($(ARCH_DATA_MODEL),32) 58 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) ia64),) 59 ARCH_DATA_MODEL=64 60 PLATFORM=windows-ia64 61 VM_PLATFORM=windows_ia64 62 HS_ARCH=ia64 63 MAKE_ARGS += LP64=1 64 MAKE_ARGS += ARCH=ia64 65 MAKE_ARGS += BUILDARCH=ia64 66 MAKE_ARGS += Platform_arch=ia64 67 MAKE_ARGS += Platform_arch_model=ia64 68 endif 69 70 # http://support.microsoft.com/kb/888731 : this can be either 71 # AMD64 for AMD, or EM64T for Intel chips. 72 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) AMD64),) 73 ARCH_DATA_MODEL=64 74 PLATFORM=windows-amd64 75 VM_PLATFORM=windows_amd64 76 HS_ARCH=x86 77 MAKE_ARGS += LP64=1 78 MAKE_ARGS += ARCH=x86 79 MAKE_ARGS += BUILDARCH=amd64 80 MAKE_ARGS += Platform_arch=x86 81 MAKE_ARGS += Platform_arch_model=x86_64 82 endif 83 84 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) EM64T),) 85 ARCH_DATA_MODEL=64 86 PLATFORM=windows-amd64 87 VM_PLATFORM=windows_amd64 88 HS_ARCH=x86 89 MAKE_ARGS += LP64=1 90 MAKE_ARGS += ARCH=x86 91 MAKE_ARGS += BUILDARCH=amd64 92 MAKE_ARGS += Platform_arch=x86 93 MAKE_ARGS += Platform_arch_model=x86_64 94 endif 95 96 # NB later OS versions than 2003 may report "Intel64" 97 ifneq ($(shell $(ECHO) $(PROCESSOR_IDENTIFIER) | $(GREP) Intel64),) 98 ARCH_DATA_MODEL=64 99 PLATFORM=windows-amd64 100 VM_PLATFORM=windows_amd64 101 HS_ARCH=x86 102 MAKE_ARGS += LP64=1 103 MAKE_ARGS += ARCH=x86 104 MAKE_ARGS += BUILDARCH=amd64 105 MAKE_ARGS += Platform_arch=x86 106 MAKE_ARGS += Platform_arch_model=x86_64 107 endif 68 108 endif 69 109 -
trunk/openjdk/hotspot/make/windows/makefiles/fastdebug.make
r2 r278 1 1 # 2 # Copyright 2005-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/generated.make
r2 r278 1 1 # 2 # Copyright 2005-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/jvmti.make
r2 r278 1 1 # 2 # Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/makedeps.make
r2 r278 1 1 # 2 # Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1999, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/product.make
r2 r278 1 1 # 2 # Copyright 2005-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/rules.make
r2 r278 1 1 # 2 # Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/sa.make
r2 r278 1 1 # 2 # Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2003, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/sanity.make
r2 r278 1 1 # 2 # Copyright 2006-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # … … 28 28 29 29 checkCL: 30 @ if "$(MSC_VER)" NEQ "1310" if "$(MSC_VER)" NEQ "1399" if "$(MSC_VER)" NEQ "1400" if "$(MSC_VER)" NEQ "1500" \30 @ if "$(MSC_VER)" NEQ "1310" if "$(MSC_VER)" NEQ "1399" if "$(MSC_VER)" NEQ "1400" if "$(MSC_VER)" NEQ "1500" if "$(MSC_VER)" NEQ "1600" \ 31 31 echo *** WARNING *** unrecognized cl.exe version $(MSC_VER) ($(RAW_MSC_VER)). Use FORCE_MSC_VER to override automatic detection. 32 32 33 33 checkLink: 34 @ if "$(LINK_VER)" NEQ "710" if "$(LINK_VER)" NEQ "800" if "$(LINK_VER)" NEQ "900" \34 @ if "$(LINK_VER)" NEQ "710" if "$(LINK_VER)" NEQ "800" if "$(LINK_VER)" NEQ "900" if "$(LINK_VER)" NEQ "1000" \ 35 35 echo *** WARNING *** unrecognized link.exe version $(LINK_VER) ($(RAW_LINK_VER)). Use FORCE_LINK_VER to override automatic detection. -
trunk/openjdk/hotspot/make/windows/makefiles/shared.make
r2 r278 1 1 # 2 # Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/top.make
r2 r278 1 1 # 2 # Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/makefiles/vm.make
r2 r278 1 1 # 2 # Copyright 1997-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/projectfiles/common/Makefile
r2 r278 1 1 # 2 # Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/projectfiles/compiler1/Makefile
r2 r278 1 1 # 2 # Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/projectfiles/compiler2/Makefile
r2 r278 1 1 # 2 # Copyright 1998-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/projectfiles/core/Makefile
r2 r278 1 1 # 2 # Copyright 1998-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/projectfiles/kernel/Makefile
r2 r278 1 1 # 2 # Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 # -
trunk/openjdk/hotspot/make/windows/projectfiles/tiered/Makefile
r2 r278 1 1 # 2 # Copyright 2006-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2008, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 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 or21 # have anyquestions.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 21 # questions. 22 22 # 23 23 #
Note:
See TracChangeset
for help on using the changeset viewer.