Fix `admin_nodeInfo` to provide the correct version again (#1394)
This commit is contained in:
parent
0238d84924
commit
0282f481bf
6
Makefile
6
Makefile
|
@ -112,12 +112,14 @@ statusgo-cross: statusgo-android statusgo-ios
|
|||
|
||||
statusgo-android: ##@cross-compile Build status-go for Android
|
||||
@echo "Building status-go for Android..."
|
||||
@gomobile bind -target=android -ldflags="-s -w" -o build/bin/statusgo.aar github.com/status-im/status-go/mobile
|
||||
@gomobile init
|
||||
@gomobile bind -target=android -ldflags="-s -w" $(BUILD_FLAGS) -o build/bin/statusgo.aar github.com/status-im/status-go/mobile
|
||||
@echo "Android cross compilation done in build/bin/statusgo.aar"
|
||||
|
||||
statusgo-ios: ##@cross-compile Build status-go for iOS
|
||||
@echo "Building status-go for iOS..."
|
||||
@gomobile bind -target=ios -ldflags="-s -w" -o build/bin/Statusgo.framework github.com/status-im/status-go/mobile
|
||||
@gomobile init
|
||||
@gomobile bind -target=ios -ldflags="-s -w" $(BUILD_FLAGS) -o build/bin/Statusgo.framework github.com/status-im/status-go/mobile
|
||||
@echo "iOS framework cross compilation done in build/bin/Statusgo.framework"
|
||||
|
||||
statusgo-linux: xgo ##@cross-compile Build status-go for Linux
|
||||
|
|
Loading…
Reference in New Issue