corba/make/CommonCorba.gmk
changeset 27580 ca12cdda0551
parent 27579 d1a63c99cdd5
parent 27577 54d97f463289
child 27581 9fffb959eb41
equal deleted inserted replaced
27579:d1a63c99cdd5 27580:ca12cdda0551
     1 #
       
     2 # Copyright (c) 2014, Oracle and/or its affiliates. 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.  Oracle designates this
       
     8 # particular file as subject to the "Classpath" exception as provided
       
     9 # by Oracle in the LICENSE file that accompanied this code.
       
    10 #
       
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14 # version 2 for more details (a copy is included in the LICENSE file that
       
    15 # accompanied this code).
       
    16 #
       
    17 # You should have received a copy of the GNU General Public License version
       
    18 # 2 along with this work; if not, write to the Free Software Foundation,
       
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20 #
       
    21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22 # or visit www.oracle.com if you need additional information or have any
       
    23 # questions.
       
    24 #
       
    25 
       
    26 ################################################################################
       
    27 # The Corba sources are old and generates a LOT of warnings.
       
    28 # Disable these using Xlint, until someone cares to fix them.
       
    29 DISABLE_CORBA_WARNINGS := -Xlint:all,-deprecation,-unchecked,-serial,-fallthrough,-cast,-rawtypes,-static,-dep-ann
       
    30 
       
    31 # The "generate old bytecode" javac setup uses the new compiler to compile for the
       
    32 # boot jdk to generate tools that need to be run with the boot jdk.
       
    33 # Thus we force the target bytecode to the boot jdk bytecode.
       
    34 $(eval $(call SetupJavaCompiler,GENERATE_OLDBYTECODE, \
       
    35     JVM := $(JAVA), \
       
    36     JAVAC := $(NEW_JAVAC), \
       
    37     FLAGS := $(BOOT_JDK_SOURCETARGET) \
       
    38          -bootclasspath "$(BOOT_RTJAR)$(PATH_SEP)$(BOOT_TOOLSJAR)" \
       
    39          $(DISABLE_CORBA_WARNINGS), \
       
    40     SERVER_DIR := $(SJAVAC_SERVER_DIR), \
       
    41     SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
       
    42 
       
    43 # The "generate new bytecode" uses the new compiler to generate bytecode
       
    44 # for the new jdk that is being built. The code compiled by this setup
       
    45 # cannot necessarily be run with the boot jdk.
       
    46 $(eval $(call SetupJavaCompiler,GENERATE_NEWBYTECODE, \
       
    47     JVM := $(JAVA), \
       
    48     JAVAC := $(NEW_JAVAC), \
       
    49     FLAGS := -cp $(BOOT_TOOLSJAR) -XDignore.symbol.file=true $(DISABLE_CORBA_WARNINGS), \
       
    50     SERVER_DIR := $(SJAVAC_SERVER_DIR), \
       
    51     SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
       
    52 
       
    53 ################################################################################