Java binding compilation improvement for macos
Tries to get `JAVA_HOME` automatically if not already set
This commit is contained in:
parent
c2ed728b70
commit
0caab36c0b
|
@ -8,15 +8,18 @@ ifeq ($(OS),Windows_NT)
|
|||
LIBRARY_RESOURCE=ckzg4844jni.dll
|
||||
else
|
||||
CLANG_EXECUTABLE=clang
|
||||
GRADLE_COMMAND=./gradlew
|
||||
GRADLE_COMMAND=./gradlew
|
||||
UNAME_S := $(shell uname -s)
|
||||
ifeq ($(UNAME_S),Linux)
|
||||
CLANG_FLAGS=-fPIC -shared
|
||||
CLANG_FLAGS=-fPIC -shared
|
||||
JNI_INCLUDE_FOLDER=linux
|
||||
LIBRARY_RESOURCE=libckzg4844jni.so
|
||||
endif
|
||||
ifeq ($(UNAME_S),Darwin)
|
||||
CLANG_FLAGS=-dynamiclib
|
||||
ifeq ($(JAVA_HOME),)
|
||||
JAVA_HOME := $(shell /usr/libexec/java_home)
|
||||
endif
|
||||
CLANG_FLAGS=-dynamiclib
|
||||
JNI_INCLUDE_FOLDER=darwin
|
||||
LIBRARY_RESOURCE=libckzg4844jni.dylib
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue