-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-android
executable file
·54 lines (47 loc) · 1.33 KB
/
build-android
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
mkdir -p android-build > /dev/null
gobuild()
{
pushd android-build
docker run --rm -it \
-e CGO_ENABLED=1 \
-e CGO_LDFLAGS="-L/tmp/chain/lib -lsmb2 -ldsm -ltasn1 -llog -liconv" \
-e CGO_CFLAGS="-I/tmp/chain/include -I/tmp/chain/include/smb2 -I/tmp/chain/include/bdsm" \
-v $PWD/..:/go/src/github.com/Xmister/samba-http \
-w /go/src/github.com/Xmister/samba-http/android-build samba-http-builder-android-$1 sh -c "\
go get -d .. && \
gomobile init && \
gomobile bind -v -ldflags '-w -s' -o streamer.aar -target=android/$2 github.com/Xmister/samba-http/streamer"
unzip -o streamer.aar
rm -f streamer.aar streamer-sources.jar
popd
}
build()
{
docker build --build-arg ARCH=$1 --build-arg GCCARCH=$2 -f Dockerfile-android -t samba-http-builder-android-$1 .
gobuild $1 $3
}
#ARM
export ARCH=arm
export GCCARCH=arm
export GOARCH=arm
build $ARCH $GCCARCH $GOARCH
#ARM64
export ARCH=arm64
export GCCARCH=aarch64
export GOARCH=arm64
build $ARCH $GCCARCH $GOARCH
#X86
export ARCH=x86
export GCCARCH=i686
export GOARCH=386
build $ARCH $GCCARCH $GOARCH
#X86_64
export ARCH=x86_64
export GCCARCH=x86_64
export GOARCH=amd64
build $ARCH $GCCARCH $GOARCH
pushd android-build
zip -r $GOPATH/bin/streamer.aar *
popd
rm -rf android-build