aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorligi <ligi@ligi.de>2018-05-02 17:07:44 +0800
committerligi <ligi@ligi.de>2018-05-02 17:21:24 +0800
commit58c4e033f4791696da7cb1de633b55af337fd976 (patch)
tree897bd7cef7b32f616b6072b33e6e4171bbabe1fd /build
parent448d17b8f735cbd16cf48351389c00630db9725a (diff)
downloadgo-tangerine-58c4e033f4791696da7cb1de633b55af337fd976.tar
go-tangerine-58c4e033f4791696da7cb1de633b55af337fd976.tar.gz
go-tangerine-58c4e033f4791696da7cb1de633b55af337fd976.tar.bz2
go-tangerine-58c4e033f4791696da7cb1de633b55af337fd976.tar.lz
go-tangerine-58c4e033f4791696da7cb1de633b55af337fd976.tar.xz
go-tangerine-58c4e033f4791696da7cb1de633b55af337fd976.tar.zst
go-tangerine-58c4e033f4791696da7cb1de633b55af337fd976.zip
build: Add ldflags -s -w when building aar
Smaller size on mobile is always good. Might also solve our maven central upload problem
Diffstat (limited to 'build')
-rw-r--r--build/ci.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/ci.go b/build/ci.go
index 5fce3c8e6..204c20675 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -731,7 +731,7 @@ func doAndroidArchive(cmdline []string) {
// Build the Android archive and Maven resources
build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile", "golang.org/x/mobile/cmd/gobind"))
build.MustRun(gomobileTool("init", "--ndk", os.Getenv("ANDROID_NDK")))
- build.MustRun(gomobileTool("bind", "--target", "android", "--javapkg", "org.ethereum", "-v", "github.com/ethereum/go-ethereum/mobile"))
+ build.MustRun(gomobileTool("bind", "-ldflags", "-s -w", "--target", "android", "--javapkg", "org.ethereum", "-v", "github.com/ethereum/go-ethereum/mobile"))
if *local {
// If we're building locally, copy bundle to build dir and skip Maven
@@ -852,7 +852,7 @@ func doXCodeFramework(cmdline []string) {
// Build the iOS XCode framework
build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile", "golang.org/x/mobile/cmd/gobind"))
build.MustRun(gomobileTool("init"))
- bind := gomobileTool("bind", "--target", "ios", "--tags", "ios", "-v", "github.com/ethereum/go-ethereum/mobile")
+ bind := gomobileTool("bind", "-ldflags", "-s -w", "--target", "ios", "--tags", "ios", "-v", "github.com/ethereum/go-ethereum/mobile")
if *local {
// If we're building locally, use the build folder and stop afterwards