🎨 Update build scripts

This commit is contained in:
Daniel 2024-05-28 23:56:04 +08:00
parent 6f50032795
commit 5ec27681f9
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 6 additions and 0 deletions

View file

@ -18,10 +18,12 @@ export GO111MODULE=on
export GOPROXY=https://goproxy.io
export CGO_ENABLED=1
echo 'Building Kernel amd64'
export GOOS=linux
export GOARCH=amd64
go build --tags fts5 -v -o "../app/kernel-linux/SiYuan-Kernel" -ldflags "-s -w" .
echo 'Building Kernel arm64'
export GOARCH=arm64
export CC=~/aarch64-linux-musl-cross/bin/aarch64-linux-musl-gcc
go build --tags fts5 -v -o "../app/kernel-linux-arm64/SiYuan-Kernel-arm64" -ldflags "-s -w" .