| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| include Makefile.common |
| |
| .PHONY: all package native native-all deploy crossbuild ducible clean-native |
| |
| linux-armv6-digest:=@sha256:a90a7deda7f561932d9ad658f8d661d17eeb44f4e7f7024ac087db1d0b95c6f5 |
| linux-x86-digest:=@sha256:fbe45fcb0c2ce82f84a998a1d37d67b3906502723ed89f8191c3243d9d835d17 |
| windows-static-x86-digest:=@sha256:b205eeeafaef4f44482d16254670da815d5679b03cf8e51e4adc3539d1c4a9c0 |
| windows-static-x64-digest:=@sha256:d385eec5b60e0892b3171c5cba3b892afccb3a45aed1ee9dc41b8a13c50e8aa5 |
| cross-build-digest:=@sha256:8dbaa86462270db93ae1b1b319bdd88d89272faf3a68632daf4fa36b414a326e |
| freebsd-crossbuild-digest:=@sha256:cda62697a15d8bdc0bc26e780b1771ee78f12c55e7d5813e62c478af5a747c43 |
| mcandre-snek-digest:=@sha256:e5aaf20daece19796dcd0553feb971143b71cc67d13d79d73649cc689fb87287 |
| |
| all: package |
| |
| MVNDNATIVE_OUT:=target/native-$(OS_NAME)-$(OS_ARCH) |
| |
| CCFLAGS:= -I$(MVNDNATIVE_OUT) $(CCFLAGS) |
| |
| target: |
| @test -d target || mkdir target |
| |
| download-includes: target |
| @test -d target/inc || mkdir target/inc |
| @test -d target/inc/unix || mkdir target/inc/unix |
| @test -d target/inc/windows || mkdir target/inc/windows |
| test -f target/inc/jni.h || wget -O target/inc/jni.h https://raw.githubusercontent.com/openjdk/jdk/jdk-11%2B28/src/java.base/share/native/include/jni.h |
| test -f target/inc/unix/jni_md.h || wget -O target/inc/unix/jni_md.h https://raw.githubusercontent.com/openjdk/jdk/jdk-11%2B28/src/java.base/unix/native/include/jni_md.h |
| test -f target/inc/windows/jni_md.h || wget -O target/inc/windows/jni_md.h https://raw.githubusercontent.com/openjdk/jdk/jdk-11%2B28/src/java.base/windows/native/include/jni_md.h |
| |
| dockcross: target |
| @test -d target/dockcross || mkdir target/dockcross |
| |
| # This target does not generate the same image digest that the one uploaded |
| #crossbuild: target |
| # test -d target/crossbuild || git clone https://github.com/multiarch/crossbuild.git target/crossbuild |
| # git -C target/crossbuild reset --hard d06cdc31fce0c85ad78408b44794366dafd59554 |
| # docker build target/crossbuild -t multiarch/crossbuild |
| |
| ducible: target |
| test -d target/ducible || git clone --branch v1.2.2 https://github.com/jasonwhite/ducible.git target/ducible |
| make --directory=target/ducible ducible CROSS_PREFIX= CXX=g++ CC=gcc |
| |
| clean-native: |
| rm -rf $(MVNDNATIVE_OUT) |
| |
| $(MVNDNATIVE_OUT)/%.o: src/main/native/%.c |
| @mkdir -p $(@D) |
| $(info running: $(CC) $(CCFLAGS) -c $< -o $@) |
| $(CC) $(CCFLAGS) -c $< -o $@ |
| |
| ifeq ($(OS_NAME), Windows) |
| $(MVNDNATIVE_OUT)/$(LIBNAME): ducible |
| endif |
| $(MVNDNATIVE_OUT)/$(LIBNAME): $(MVNDNATIVE_OUT)/mvndnative.o |
| @mkdir -p $(@D) |
| $(CC) $(CCFLAGS) -o $@ $(MVNDNATIVE_OUT)/mvndnative.o $(LINKFLAGS) |
| ifeq ($(OS_NAME), Windows) |
| target/ducible/ducible $(MVNDNATIVE_OUT)/$(LIBNAME) |
| endif |
| |
| NATIVE_DIR=src/main/resources/org/mvndaemon/mvnd/nativ/$(OS_NAME)/$(OS_ARCH) |
| NATIVE_TARGET_DIR:=target/classes/org/mvndaemon/mvnd/nativ/$(OS_NAME)/$(OS_ARCH) |
| NATIVE_DLL:=$(NATIVE_DIR)/$(LIBNAME) |
| |
| # For cross-compilation, install docker. See also https://github.com/dockcross/dockcross |
| # Disabled linux-armv6 build because of this issue; https://github.com/dockcross/dockcross/issues/190 |
| native-all: linux-x86 linux-x86_64 linux-arm linux-armv6 linux-armv7 \ |
| linux-arm64 linux-ppc64 win-x86 win-x86_64 mac-x86 mac-x86_64 mac-arm64 freebsd-x86 freebsd-x86_64 |
| |
| native: $(NATIVE_DLL) |
| |
| $(NATIVE_DLL): $(MVNDNATIVE_OUT)/$(LIBNAME) |
| @mkdir -p $(@D) |
| cp $< $@ |
| @mkdir -p $(NATIVE_TARGET_DIR) |
| cp $< $(NATIVE_TARGET_DIR)/$(LIBNAME) |
| |
| target/dockcross/dockcross-linux-x86: dockcross |
| docker run --rm dockcross/linux-x86$(linux-x86-digest) > target/dockcross/dockcross-linux-x86 |
| chmod +x target/dockcross/dockcross-linux-x86 |
| linux-x86: download-includes target/dockcross/dockcross-linux-x86 |
| target/dockcross/dockcross-linux-x86 --image dockcross/linux-x86$(linux-x86-digest) bash -c 'make clean-native native OS_NAME=Linux OS_ARCH=x86' |
| |
| linux-x86_64: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| -e CROSS_TRIPLE=x86_64-linux-gnu multiarch/crossbuild$(cross-build-digest) make clean-native native OS_NAME=Linux OS_ARCH=x86_64 |
| |
| linux-arm: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| -e CROSS_TRIPLE=arm-linux-gnueabi multiarch/crossbuild$(cross-build-digest) make clean-native native OS_NAME=Linux OS_ARCH=arm |
| |
| target/dockcross/dockcross-linux-armv6: dockcross |
| docker run --rm dockcross/linux-armv6$(linux-armv6-digest) > target/dockcross/dockcross-linux-armv6 |
| chmod +x target/dockcross/dockcross-linux-armv6 |
| linux-armv6: download-includes target/dockcross/dockcross-linux-armv6 |
| target/dockcross/dockcross-linux-armv6 --image dockcross/linux-armv6$(linux-armv6-digest) bash -c 'make clean-native native CROSS_PREFIX=armv6-unknown-linux-gnueabihf- OS_NAME=Linux OS_ARCH=armv6' |
| |
| linux-armv7: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| -e CROSS_TRIPLE=arm-linux-gnueabihf multiarch/crossbuild$(cross-build-digest) make clean-native native OS_NAME=Linux OS_ARCH=armv7 |
| |
| linux-arm64: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| -e CROSS_TRIPLE=aarch64-linux-gnu multiarch/crossbuild$(cross-build-digest) make clean-native native OS_NAME=Linux OS_ARCH=arm64 |
| |
| linux-ppc64: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| -e CROSS_TRIPLE=powerpc64le-linux-gnu multiarch/crossbuild$(cross-build-digest) make clean-native native OS_NAME=Linux OS_ARCH=ppc64 |
| |
| target/dockcross/dockcross-windows-static-x86: dockcross |
| docker run --rm dockcross/windows-static-x86$(windows-static-x86-digest) > target/dockcross/dockcross-windows-static-x86 |
| chmod +x target/dockcross/dockcross-windows-static-x86 |
| win-x86: download-includes target/dockcross/dockcross-windows-static-x86 |
| target/dockcross/dockcross-windows-static-x86 --image dockcross/windows-static-x86$(windows-static-x86-digest) bash -c 'make clean-native native CROSS_PREFIX=i686-w64-mingw32.static- OS_NAME=Windows OS_ARCH=x86' |
| |
| target/dockcross/dockcross-windows-static-x64: dockcross |
| docker run --rm dockcross/windows-static-x64$(windows-static-x64-digest) > target/dockcross/dockcross-windows-static-x64 |
| chmod +x target/dockcross/dockcross-windows-static-x64 |
| win-x86_64: download-includes target/dockcross/dockcross-windows-static-x64 |
| target/dockcross/dockcross-windows-static-x64 --image dockcross/windows-static-x64$(windows-static-x64-digest) bash -c 'make clean-native native CROSS_PREFIX=x86_64-w64-mingw32.static- OS_NAME=Windows OS_ARCH=x86_64' |
| |
| mac-x86: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| -e CROSS_TRIPLE=i386-apple-darwin multiarch/crossbuild$(cross-build-digest) make clean-native native OS_NAME=Mac OS_ARCH=x86 |
| |
| mac-x86_64: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| -e CROSS_TRIPLE=x86_64-apple-darwin multiarch/crossbuild$(cross-build-digest) make clean-native native OS_NAME=Mac OS_ARCH=x86_64 |
| |
| mac-arm64: download-includes |
| docker run -it --rm -v $$PWD:/src --user $$(id -u):$$(id -g) \ |
| -e TARGET=arm64-apple-darwin mcandre/snek$(mcandre-snek-digest) sh -c "make clean-native native CROSS_PREFIX=arm64-apple-darwin20.4- OS_NAME=Mac OS_ARCH=arm64" |
| |
| freebsd-x86: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| empterdose/freebsd-cross-build$(freebsd-crossbuild-digest) make clean-native native CROSS_PREFIX=i386-freebsd9- OS_NAME=FreeBSD OS_ARCH=x86 |
| |
| freebsd-x86_64: download-includes |
| docker run -it --rm -v $$PWD:/workdir --user $$(id -u):$$(id -g) \ |
| empterdose/freebsd-cross-build$(freebsd-crossbuild-digest) make clean-native native CROSS_PREFIX=x86_64-freebsd9- OS_NAME=FreeBSD OS_ARCH=x86_64 |
| |
| #sparcv9: |
| # $(MAKE) native OS_NAME=SunOS OS_ARCH=sparcv9 |
| |