make/launcher/Launcher-jdk.compiler.gmk
author egahlin
Fri, 29 Nov 2019 17:31:01 +0100
changeset 59327 2c3578aa0bdf
parent 48335 f1e1a4fc1cc7
permissions -rw-r--r--
8234671: JFR api/consumer/recordingstream/TestStart.java failed due to timeout at testStartTwice() Reviewed-by: mgronlun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     1
#
48335
f1e1a4fc1cc7 8193503: javah launcher was not removed by JDK-8191054
alanb
parents: 47216
diff changeset
     2
# Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     4
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    10
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    15
# accompanied this code).
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    16
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    20
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    23
# questions.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    24
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    25
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    26
include LauncherCommon.gmk
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    27
33523
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    28
$(eval $(call SetupBuildLauncher, javac, \
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    29
   MAIN_CLASS := com.sun.tools.javac.Main, \
40261
86a49ba76f52 8136930: Simplify use of module-system options by custom launchers
mchung
parents: 37779
diff changeset
    30
   JAVA_ARGS := --add-modules ALL-DEFAULT, \
41966
bac52fa6e617 8169001: Remove launcher's built-in ergonomics
ksrini
parents: 41472
diff changeset
    31
   CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
33523
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    32
))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    33
33523
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    34
$(eval $(call SetupBuildLauncher, serialver, \
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    35
    MAIN_CLASS := sun.tools.serialver.SerialVer, \
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    36
    CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    37
))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    38
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    39
ifeq ($(ENABLE_SJAVAC), yes)
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    40
  # Build sjavac directly to the exploded image so that it does not get included
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    41
  # into any real images
33523
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    42
  $(eval $(call SetupBuildLauncher, sjavac, \
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    43
      MAIN_CLASS := com.sun.tools.sjavac.Main, \
41966
bac52fa6e617 8169001: Remove launcher's built-in ergonomics
ksrini
parents: 41472
diff changeset
    44
      CFLAGS := -DEXPAND_CLASSPATH_WILDCARDS, \
33523
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    45
      OUTPUT_DIR := $(JDK_OUTPUTDIR)/bin, \
eb067bcd9414 8141444: Clean up building of JDK launchers
ihse
parents: 30813
diff changeset
    46
  ))
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    47
endif