Convert Linux x86_64 to amd64

This commit is contained in:
Justin Traglia 2022-12-19 09:52:54 -06:00
parent 4c5f88d828
commit 3a62ca018e
1 changed files with 5 additions and 1 deletions

View File

@ -19,7 +19,11 @@ else
ifeq ($(UNAME_S),Linux)
CLANG_FLAGS=-fPIC -shared
JNI_INCLUDE_FOLDER=linux
ifeq ($(UNAME_M),x86_64)
OS_ARCH=amd64
else
OS_ARCH=$(UNAME_M)
endif
LIBRARY_RESOURCE=libckzg4844jni.so
endif
ifeq ($(UNAME_S),Darwin)