From e3ac2acb7ab165ddb802effafdd058eabb5c7cbb Mon Sep 17 00:00:00 2001 From: Tilman Dilo Date: Sun, 19 Nov 2017 23:20:18 +0100 Subject: [PATCH] clients/android: update gomobile to fix docker build Due to a change in the Android NDK (starting from r16), building the docker container fails with an error during the installation of gomobile: fatal error: 'stdlib.h' file not found This issue was addressed in more recent versions of gomobile, which are compatible with the new NDK. See https://github.com/golang/go/issues/21802 This CL simply updates gomobile to the most recent commit. Change-Id: I87c468c34de441bc6acd40b717d1d950014e5a99 --- clients/android/devenv/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/android/devenv/Dockerfile b/clients/android/devenv/Dockerfile index 10cb568f1..9f54a1a1b 100644 --- a/clients/android/devenv/Dockerfile +++ b/clients/android/devenv/Dockerfile @@ -47,7 +47,7 @@ ENV PATH $PATH:$GOROOT/bin:$GOPHER/bin # Get gomobile RUN go get -u golang.org/x/mobile/cmd/gomobile WORKDIR $GOPATH/src/golang.org/x/mobile/cmd/gomobile -RUN git reset --hard 44a54e9b78442c0a8233ee2d552c61da88e053c3 +RUN git reset --hard c0beac360cc13173963df8872fe4b0f2542cb85b RUN go install # init gomobile