From 8c1dcec213d344309c50c18a125586d0afd7ddb1 Mon Sep 17 00:00:00 2001 From: Roberto Sora Date: Mon, 15 Oct 2018 18:24:51 +0200 Subject: [PATCH 1/2] updated development info on golang version for build --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index de658dd73..0619ea1cc 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + arduino-create-agent ==================== @@ -375,6 +376,8 @@ The results of the upload will be delivered via websocket with messages that loo ## Development +Please remember that for compile the project, you need go version <= 1.8.7 (more recent versions are not supported for compile) + To clone the repository, run the following command: ``` go get github.com/arduino/arduino-create-agent From ff1c39f465c87e9bc8cd042cc256095863fe8f63 Mon Sep 17 00:00:00 2001 From: Roberto Sora Date: Mon, 15 Oct 2018 18:25:47 +0200 Subject: [PATCH 2/2] added map entry to enable support for arm tools --- tools/download.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/download.go b/tools/download.go index 705156ea9..aca8028f9 100644 --- a/tools/download.go +++ b/tools/download.go @@ -56,6 +56,7 @@ var systems = map[string]string{ "darwinamd64": "apple-darwin", "windows386": "i686-mingw32", "windowsamd64": "i686-mingw32", + "linuxarm": "arm-linux-gnueabihf", } func mimeType(data []byte) (string, error) {