make/lib/SecurityLibraries.gmk
author ihse
Thu, 15 Mar 2018 01:20:47 +0100
changeset 49244 995a5556edfa
parent 49070 d7859531621b
permissions -rw-r--r--
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable Reviewed-by: erikj
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     1
#
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 47217
diff changeset
     2
# Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     4
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    10
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    15
# accompanied this code).
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    16
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    20
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    23
# questions.
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    24
#
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    25
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    26
include LibCommon.gmk
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    27
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    28
ifeq ($(OPENJDK_TARGET_OS), macosx)
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 47217
diff changeset
    29
  # JavaNativeFoundation framework not supported in static builds
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    30
  ifneq ($(STATIC_BUILD), true)
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    31
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    32
  ################################################################################
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    33
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    34
    LIBOSXSECURITY_DIRS := $(TOPDIR)/src/java.base/macosx/native/libosxsecurity
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    35
    LIBOSXSECURITY_CFLAGS := -I$(LIBOSXSECURITY_DIRS) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    36
        $(LIBJAVA_HEADER_FLAGS) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    37
        -I$(SUPPORT_OUTPUTDIR)/headers/java.base \
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    38
49244
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49070
diff changeset
    39
    $(eval $(call SetupJdkLibrary, BUILD_LIBOSXSECURITY, \
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 47217
diff changeset
    40
        NAME := osxsecurity, \
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    41
        SRC := $(LIBOSXSECURITY_DIRS), \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    42
        OPTIMIZATION := LOW, \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    43
        CFLAGS := $(CFLAGS_JDKLIB) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    44
            $(LIBOSXSECURITY_CFLAGS), \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    45
        DISABLED_WARNINGS_clang := deprecated-declarations, \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    46
        LDFLAGS := $(LDFLAGS_JDKLIB) \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    47
            -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base \
33661
jwilhelm
parents: 33653 33406
diff changeset
    48
            $(call SET_SHARED_LIBRARY_ORIGIN) \
jwilhelm
parents: 33653 33406
diff changeset
    49
            -fobjc-link-runtime, \
jwilhelm
parents: 33653 33406
diff changeset
    50
        LIBS := \
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    51
            -framework JavaNativeFoundation \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    52
            -framework CoreServices \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    53
            -framework Security \
33661
jwilhelm
parents: 33653 33406
diff changeset
    54
            $(JDKLIB_LIBS), \
35276
50b3cdcef339 8145596: Enable debug symbols for all libraries
ihse
parents: 33661
diff changeset
    55
    ))
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    56
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    57
    $(BUILD_LIBOSXSECURITY): $(BUILD_LIBJAVA)
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    58
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    59
    TARGETS += $(BUILD_LIBOSXSECURITY)
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    60
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    61
  ################################################################################
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    62
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
    63
  endif
32229
181a18587d61 8086002: Move apple.security.AppleProvider to a proper module
valeriep
parents:
diff changeset
    64
endif