Golang mips平台交叉编译

#----------------------------------------
# 可执行文件名称
#----------------------------------------
app = gateway

ifeq ($(OS), Windows_NT)
	exec = $(app).exe
else
	exec = $(app)
endif

#----------------------------------------
# 交叉编译设置
#----------------------------------------
set_env += :
set_env += ; export CGO_CFLAGS="-Os -ffunction-sections -fdata-sections"
set_env += ; export CGO_FFLAGS="-Os"
set_env += ; export CGO_LDFLAGS="-Os"
set_env += ; export STAGING_DIR=/opt/toolchain-mipsel_24kec+dsp_gcc-4.8-linaro_uClibc-0.9.33.2/bin:$(STAGING_DIR)
set_env += ; export CC=/mnt/extension/docker_share/openwrt_sdk_2102/openwrt-b2ae423/staging_dir/toolchain-mipsel_24kc_gcc-8.4.0_musl/bin/mipsel-openwrt-linux-gcc
set_env += ; export CGO_ENABLED=1; export GOOS=linux; export GOMIPS=softfloat; export GOARCH=mipsle
# set_env += ; export GOOS=windows

#----------------------------------------
# 链接参数设置
#----------------------------------------
build_time = $(shell date +'%Y-%m-%d %H:%M:%S')
LD_FLAG = -ldflags="-s -w -X 'gateway/config.BUILD_TIME=$(build_time)'"

#----------------------------------------
# 编译后命令执行
#----------------------------------------
script_do := :
#script_do += ; cp $(exec) "d:\Program Files\app"

#----------------------------------------
# 编译前准备
#----------------------------------------
src := $(shell find . -name "*.go")

all: ${exec}

$(exec):  $(src) Makefile
	$(set_env); go build $(LD_FLAG) -o $@
	$(script_do)

zip: all
	upx -9 ./$(exec)

up: all 
	scp ./$(exec) root@192.168.12.10:/tmp

init:
	go mod init gateway
	go mod tidy

update:
	go mod tidy

load: clean zip
	cd ./scripts && ./load.sh && cd -

pack: clean zip
	cd ./ipk && ./build.sh && cd -

.PHONY: clean

clean:
	go clean

posted @   duapple  阅读(59)  评论(0编辑  收藏  举报  
相关博文:
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 通过 API 将Deepseek响应流式内容输出到前端
· AI Agent开发,如何调用三方的API Function,是通过提示词来发起调用的吗
点击右上角即可分享
微信分享提示