make/BuildStatic.gmk
author jlaskey
Thu, 14 Nov 2019 12:50:08 -0400
branchJDK-8193209-branch
changeset 59088 da026c172c1e
parent 52804 28094715ae71
permissions -rw-r--r--
add missing files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33562
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     1
#
52804
28094715ae71 8214718: Update missing copyright year in build system
ihse
parents: 52065
diff changeset
     2
# Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
33562
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     4
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    10
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    15
# accompanied this code).
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    16
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    20
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    23
# questions.
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    24
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    25
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    26
default: all
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    27
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    28
include $(SPEC)
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    29
include MakeBase.gmk
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    30
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    31
################################################################################
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    32
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    33
# Concatenate exported.symbols files for modules into a single global file.
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    34
#
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    35
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    36
GLOBAL_SYMBOLS_FILE := $(SUPPORT_OUTPUTDIR)/build-static/exported.symbols
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    37
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    38
EXPORTED_SYMBOLS_MODULES := java.base jdk.jdwp.agent
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    39
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    40
MODULES_SYMBOLS_FILES := $(foreach module, $(EXPORTED_SYMBOLS_MODULES), \
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    41
    $(SUPPORT_OUTPUTDIR)/modules_libs/$(module)/$(module).symbols)
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    42
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    43
$(GLOBAL_SYMBOLS_FILE): $(MODULES_SYMBOLS_FILES)
35008
ef0cd710989f 8146403: Windows build can be faster
erikj
parents: 33562
diff changeset
    44
	$(call LogInfo, Generating global exported.symbols file)
52065
dea8a62cdfc3 8211724: Change mkdir -p to MakeDir macro where possible
erikj
parents: 35008
diff changeset
    45
	$(call MakeTargetDir)
33562
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    46
	$(CAT) $^ > $@
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    47
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    48
TARGETS += $(GLOBAL_SYMBOLS_FILE)
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    49
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    50
################################################################################
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    51
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    52
all: $(TARGETS)
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    53
c76b2fa11486 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
diff changeset
    54
.PHONY: default all