We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f820d4 commit 09ed88bCopy full SHA for 09ed88b
README.md
@@ -0,0 +1,22 @@
1
+# arduino101load
2
+multiplatform launcher for Arduino101 dfu-util flashing utility
3
+
4
+## Compiling
5
6
+* Download go package from [here](https://golang.org/dl/) or using your package manager
7
+* `cd` into the root folder of this project
8
+* execute
9
+```bash
10
+export GOPATH=$PWD
11
+go get
12
+go build
13
+```
14
+to produce a binary of `arduino101load` for your architecture.
15
16
+To cross compile for different OS/architecture combinations, execute
17
18
+GOOS=windows GOARCH=386 go build #windows
19
+GOOS=darwin GOARCH=amd64 go build #osx
20
+GOOS=linux GOARCH=386 go build #linux_x86
21
+GOOS=linux GOARCH=amd64 go build #linux_x86-64
22
0 commit comments