feat: add more arch

This commit is contained in:
源文雨 2024-04-17 18:01:32 +09:00
parent 2ba85969d6
commit 333455ae73
3 changed files with 7 additions and 3 deletions

View File

@ -22,7 +22,7 @@ jobs:
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r26d
ndk-version: r16b
- name: Setup Go Environment
uses: actions/setup-go@master

View File

@ -14,7 +14,7 @@ jobs:
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r26d
ndk-version: r16b
- name: Setup Go Environment
uses: actions/setup-go@master
@ -28,6 +28,7 @@ jobs:
BUILD_MACHINE: linux
run: |
echo NDK path is $NDK_HOME
ll $NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin
make -e
- name: Build and Run Tests

View File

@ -21,9 +21,12 @@ TEST_EXPECTED := '{"code":200,'
all:
@BUILD_PATH=$(BUILD_PATH)/aarch64 TARGET_ARCH=aarch64 GOARCH=arm64 $(MAKE) -e shared
@BUILD_PATH=$(BUILD_PATH)/armv7a TARGET_ARCH=armv7a GOARCH=arm TARGET_SDK=androideabi23 $(MAKE) -e shared
@BUILD_PATH=$(BUILD_PATH)/armv7a TARGET_ARCH=armv7a GOARCH=arm GOARM=7 TARGET_SDK=androideabi23 $(MAKE) -e shared
@BUILD_PATH=$(BUILD_PATH)/arm TARGET_ARCH=arm GOARCH=arm GOARM=5 TARGET_SDK=androideabi23 $(MAKE) -e shared
@BUILD_PATH=$(BUILD_PATH)/i686 TARGET_ARCH=i686 GOARCH=amd64 $(MAKE) -e shared
@BUILD_PATH=$(BUILD_PATH)/x86_64 TARGET_ARCH=x86_64 GOARCH=386 $(MAKE) -e shared
@BUILD_PATH=$(BUILD_PATH)/mips TARGET_ARCH=mips GOOS=linux GOARCH=mipsel GOMIPS=softfloat $(MAKE) -e shared
@BUILD_PATH=$(BUILD_PATH)/mips64 TARGET_ARCH=mips64 GOOS=linux GOARCH=mips64el $(MAKE) -e shared
rm -rf $(BUILD_PATH)/*/*.h
cd $(BUILD_PATH) && gzip -9 -k aarch64/* armv7a/* i686/* x86_64/*
find $(BUILD_PATH) -mindepth 1 -maxdepth 1 -type d -exec mv {}/lib$(PROJECT_NAME).so.gz {}_lib$(PROJECT_NAME).so.gz \;; \