Skip to content
This repository was archived by the owner on Apr 28, 2022. It is now read-only.

Commit

Permalink
build: support linux/arm and darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
fatedier committed May 15, 2016
1 parent 040841d commit d3c4401
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
4 changes: 1 addition & 3 deletions Makefile.cross-compiles
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
export PATH := $(GOPATH)/bin:$(PATH)
export OLDGOPATH := $(GOPATH)
export GOPATH := $(shell pwd)/Godeps/_workspace:$(shell pwd):$(GOPATH)
export OS_TARGETS=linux windows
export ARCH_TARGETS=386 amd64

all: build

Expand All @@ -12,4 +10,4 @@ godep:
GOPATH=$(OLDGOPATH) go get github.com/mitchellh/gox

app:
gox -os "$(OS_TARGETS)" -arch="$(ARCH_TARGETS)" ./...
gox -osarch "darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm windows/386 windows/amd64" ./...
20 changes: 17 additions & 3 deletions cross_compiles_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,32 @@ make -f ./Makefile.cross-compiles
rm -rf ./packages
mkdir ./packages

os_all='linux windows'
arch_all='386 amd64'
os_all='linux windows darwin'
arch_all='386 amd64 arm'

for os in $os_all; do
for arch in $arch_all; do
frp_dir_name="frp_${frp_version}_${os}_${arch}"
frp_path="./packages/frp_${frp_version}_${os}_${arch}"
mkdir ${frp_path}

if [ "x${os}" = x"windows" ]; then
if [ ! -f "./frpc_${os}_${arch}.exe" ]; then
continue
fi
if [ ! -f "./frps_${os}_${arch}.exe" ]; then
continue
fi
mkdir ${frp_path}
mv ./frpc_${os}_${arch}.exe ${frp_path}/frpc.exe
mv ./frps_${os}_${arch}.exe ${frp_path}/frps.exe
else
if [ ! -f "./frpc_${os}_${arch}" ]; then
continue
fi
if [ ! -f "./frps_${os}_${arch}" ]; then
continue
fi
mkdir ${frp_path}
mv ./frpc_${os}_${arch} ${frp_path}/frpc
mv ./frps_${os}_${arch} ${frp_path}/frps
fi
Expand Down

0 comments on commit d3c4401

Please sign in to comment.