🎨 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=darwin
export GOARCH=amd64
go build --tags fts5 -v -o "../app/kernel-darwin/SiYuan-Kernel" -ldflags "-s -w" .
echo 'Building Kernel arm64'
export GOOS=darwin
export GOARCH=arm64
go build --tags fts5 -v -o "../app/kernel-darwin-arm64/SiYuan-Kernel" -ldflags "-s -w" .

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" .

View file

@ -27,6 +27,7 @@ cd kernel
@REM you can use `go generate` instead (need add something in main.go)
goversioninfo -platform-specific=true -icon=resource/icon.ico -manifest=resource/goversioninfo.exe.manifest
echo 'Building Kernel amd64'
set GOOS=windows
set GOARCH=amd64
go build --tags fts5 -v -o "../app/kernel/SiYuan-Kernel.exe" -ldflags "-s -w -H=windowsgui" .
@ -34,6 +35,7 @@ if errorlevel 1 (
exit /b %errorlevel%
)
echo 'Building Kernel arm64'
set GOARCH=arm64
@REM if you want to build arm64, you need to install aarch64-w64-mingw32-gcc
set CC="D:/Program Files/llvm-mingw-20240518-ucrt-x86_64/bin/aarch64-w64-mingw32-gcc.exe"