jdk/make/Setup.gmk
author katleman
Thu, 17 Apr 2014 10:13:36 -0700
changeset 23942 7b722b4cdd2d
parent 23714 468e8b2a358a
child 24689 84f69ef153cc
permissions -rw-r--r--
Added tag jdk9-b09 for changeset 667dccd79b65
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
22567
5816a47fa4dd 8032047: Fix static lint warnings in client libraries
darcy
parents: 22284
diff changeset
     2
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     4
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    10
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    15
# accompanied this code).
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    16
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    20
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    23
# questions.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    24
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    25
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    26
DISABLE_WARNINGS := -Xlint:all,-deprecation,-unchecked,-rawtypes,-cast,-serial,-dep-ann,-static,-fallthrough,-try,-varargs,-empty,-finally
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    27
19846
ee72cd8a1085 8024643: Turn on javac lint checking in building the jdk repo
darcy
parents: 17957
diff changeset
    28
# To build with all warnings enabled, do the following:
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    29
# make JAVAC_WARNINGS="-Xlint:all -Xmaxwarns 10000"
23714
468e8b2a358a 8032977: Add serial lint warning to build of jdk repository
darcy
parents: 23350
diff changeset
    30
JAVAC_WARNINGS := -Xlint:-unchecked,-deprecation,-overrides,auxiliaryclass,cast,classfile,dep-ann,divzero,empty,overloads,serial,static,try,varargs -Werror
19846
ee72cd8a1085 8024643: Turn on javac lint checking in building the jdk repo
darcy
parents: 17957
diff changeset
    31
20861
6dd0502e6616 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 19846
diff changeset
    32
# Any java code executed during a JDK build to build other parts of the JDK must be 
6dd0502e6616 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 19846
diff changeset
    33
# executed by the bootstrap JDK (probably with -Xbootclasspath/p: ) and for this 
6dd0502e6616 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 19846
diff changeset
    34
# purpose must be built with -target PREVIOUS for bootstrapping purposes, which 
6dd0502e6616 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 19846
diff changeset
    35
# requires restricting to language level and api of previous JDK.
6dd0502e6616 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 19846
diff changeset
    36
#
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    37
# The generate old bytecode javac setup uses the new compiler to compile for the
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    38
# boot jdk to generate tools that need to be run with the boot jdk.
20861
6dd0502e6616 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 19846
diff changeset
    39
# Thus we force the target bytecode to the previous JDK version.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    40
$(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \
23350
0aac9866d9e5 8010767: Build fails on OEL6 with 16 cores
erikj
parents: 22584
diff changeset
    41
    JVM := $(JAVA_SMALL), \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    42
    JAVAC := $(NEW_JAVAC), \
20861
6dd0502e6616 6604021: RMIC is defaulting to BOOT jdk version, needs to be rmic.jar
erikj
parents: 19846
diff changeset
    43
    FLAGS := $(BOOT_JDK_SOURCETARGET) -bootclasspath $(BOOT_RTJAR) $(DISABLE_WARNINGS), \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    44
    SERVER_DIR := $(SJAVAC_SERVER_DIR), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    45
    SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    46
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    47
# The generate new bytecode javac setup uses the new compiler to compile for the
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    48
# new jdk. This new bytecode might only be possible to run using the new jvm.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    49
$(eval $(call SetupJavaCompiler,GENERATE_JDKBYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    50
    JVM := $(JAVA), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    51
    JAVAC := $(NEW_JAVAC), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    52
    FLAGS := -bootclasspath $(JDK_OUTPUTDIR)/classes -source 8 -target 8 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    53
        -encoding ascii -XDignore.symbol.file=true $(JAVAC_WARNINGS) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    54
        $(GENERATE_JDKBYTECODE_EXTRA_FLAGS), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    55
    SERVER_DIR := $(SJAVAC_SERVER_DIR), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    56
    SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    57
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    58
# After the jdk is built, we want to build demos using only the recently
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    59
# generated jdk classes and nothing else, no jdk source, etc etc.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    60
# I.e. the rt.jar, but since rt.jar has not yet been generated
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    61
# (it will be in "make images") therefore we use classes instead.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    62
$(eval $(call SetupJavaCompiler,GENERATE_USINGJDKBYTECODE, \
23350
0aac9866d9e5 8010767: Build fails on OEL6 with 16 cores
erikj
parents: 22584
diff changeset
    63
    JVM := $(JAVA_SMALL), \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    64
    JAVAC := $(NEW_JAVAC), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    65
    FLAGS := -bootclasspath $(JDK_OUTPUTDIR)/classes $(DISABLE_WARNINGS), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    66
    SERVER_DIR := $(SJAVAC_SERVER_DIR), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19846
diff changeset
    67
    SERVER_JVM := $(SJAVAC_SERVER_JAVA)))