Golang mips平台交叉编译

13 篇文章 4 订阅
6 篇文章 1 订阅
#----------------------------------------
# 可执行文件名称
#----------------------------------------
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

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值