123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- ################################################################################
- #
- # openjdk
- #
- ################################################################################
- OPENJDK_VERSION_MAJOR = 11.0.2
- OPENJDK_VERSION_MINOR = 9
- OPENJDK_VERSION = jdk-$(OPENJDK_VERSION_MAJOR)+$(OPENJDK_VERSION_MINOR)
- OPENJDK_SITE = $(call github,AdoptOpenJDK,openjdk-jdk11u,$(OPENJDK_VERSION))
- OPENJDK_LICENSE = GPL-2.0+ with exception
- OPENJDK_LICENSE_FILES = LICENSE
- # OpenJDK requires Alsa, cups, and X11 even for a headless build.
- # host-zip is needed for the zip executable.
- OPENJDK_DEPENDENCIES = \
- host-openjdk-bin \
- host-pkgconf \
- host-zip \
- host-zlib \
- alsa-lib \
- cups \
- fontconfig \
- giflib \
- jpeg \
- lcms2 \
- libpng \
- libusb \
- xlib_libXrender \
- xlib_libXt \
- xlib_libXtst \
- zlib
- # JVM variants
- ifeq ($(BR2_PACKAGE_OPENJDK_JVM_VARIANT_CLIENT),y)
- OPENJDK_JVM_VARIANTS += client
- endif
- ifeq ($(BR2_PACKAGE_OPENJDK_JVM_VARIANT_SERVER),y)
- OPENJDK_JVM_VARIANTS += server
- endif
- ifeq ($(BR2_PACKAGE_OPENJDK_JVM_VARIANT_ZERO),y)
- OPENJDK_JVM_VARIANTS += zero
- OPENJDK_DEPENDENCIES += libffi
- endif
- OPENJDK_JVM_VARIANT_LIST = $(subst $(space),$(comma),$(OPENJDK_JVM_VARIANTS))
- # OpenJDK ignores some variables unless passed via the environment.
- # These variables are PATH, LD, CC, CXX, and CPP.
- # OpenJDK defaults ld to the ld binary but passes -Xlinker and -z as
- # arguments during the linking process, which causes compilation failures.
- # To fix this issue, LD is set to point to gcc.
- OPENJDK_CONF_ENV = \
- PATH=$(BR_PATH) \
- CC=$(TARGET_CC) \
- CPP=$(TARGET_CPP) \
- CXX=$(TARGET_CXX) \
- LD=$(TARGET_CC) \
- BUILD_SYSROOT_CFLAGS="$(HOST_CFLAGS)" \
- BUILD_SYSROOT_LDFLAGS="$(HOST_LDFLAGS)"
- OPENJDK_CONF_OPTS = \
- --disable-full-docs \
- --disable-hotspot-gtest \
- --disable-manpages \
- --disable-warnings-as-errors \
- --enable-headless-only \
- --enable-openjdk-only \
- --enable-unlimited-crypto \
- --openjdk-target=$(GNU_TARGET_NAME) \
- --with-boot-jdk=$(HOST_DIR) \
- --with-debug-level=release \
- --with-devkit=$(HOST_DIR) \
- --with-extra-cflags="$(TARGET_CFLAGS)" \
- --with-extra-cxxflags="$(TARGET_CXXFLAGS)" \
- --with-giflib=system \
- --with-jobs=$(PARALLEL_JOBS) \
- --with-jvm-variants=$(OPENJDK_JVM_VARIANT_LIST) \
- --with-lcms=system \
- --with-libjpeg=system \
- --with-libpng=system \
- --with-zlib=system \
- --with-native-debug-symbols=none \
- --without-version-pre \
- --with-sysroot=$(STAGING_DIR) \
- --with-vendor-name="AdoptOpenJDK" \
- --with-vendor-url="https://adoptopenjdk.net/" \
- --with-vendor-version-string="AdoptOpenJDK" \
- --with-version-build="$(OPENJDK_VERSION_MAJOR)" \
- --with-version-string="$(OPENJDK_VERSION_MAJOR)"
- # If building for AArch64, use the provided CPU port.
- ifeq ($(BR2_aarch64),y)
- OPENJDK_CONF_OPTS += --with-cpu-port=aarch64 --with-abi-profile=aarch64
- endif
- ifeq ($(BR2_CCACHE),y)
- OPENJDK_CONF_OPTS += \
- --enable-ccache \
- --with-ccache-dir=$(BR2_CCACHE_DIR)
- endif
- # Autogen and configure are performed in a single step.
- define OPENJDK_CONFIGURE_CMDS
- chmod +x $(@D)/configure
- cd $(@D); $(OPENJDK_CONF_ENV) ./configure autogen $(OPENJDK_CONF_OPTS)
- endef
- # Make -jn is unsupported. Instead, set the "--with-jobs=" configure option,
- # and use $(MAKE1).
- define OPENJDK_BUILD_CMDS
- $(MAKE1) -C $(@D) legacy-jre-image
- endef
- # Calling make install always builds and installs the JDK instead of the JRE,
- # which makes manual installation necessary.
- define OPENJDK_INSTALL_TARGET_CMDS
- cp -dpfr $(@D)/build/linux-*-release/images/jre/bin/* $(TARGET_DIR)/usr/bin/
- cp -dpfr $(@D)/build/linux-*-release/images/jre/lib/* $(TARGET_DIR)/usr/lib/
- endef
- $(eval $(generic-package))
|