Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
c57530386c | ||
|
f9f1d77182 | ||
|
b346859be0 |
@ -8,4 +8,10 @@ Arremi is a simple driver/router from Arduino USB serial to MIDI
|
||||
**Linux support not completed yet! debug needed.**
|
||||
|
||||
## Build
|
||||
just run `build.sh` and find app(mac) or tgz(linux) in `build` folder.
|
||||
just run `build.sh` and find app(mac) or tgz(linux) in `build` folder.
|
||||
|
||||
|
||||
## Known Problems
|
||||
|
||||
* Linux build failed for `andlabs/ui` [bug](https://github.com/andlabs/ui/issues/272)
|
||||
|
||||
|
12
build.sh
12
build.sh
@ -2,6 +2,11 @@
|
||||
|
||||
export BUILD_BASE=build
|
||||
|
||||
function get_go_ver(){
|
||||
GOVER=`go version|awk '{print $3}'`
|
||||
export GOVER
|
||||
}
|
||||
|
||||
function get_os() {
|
||||
OS=`uname|tr '[:upper:]' '[:lower:]'`
|
||||
if [ "${GOOS}x" != "x" ]; then
|
||||
@ -24,9 +29,14 @@ function build_linux() {
|
||||
}
|
||||
|
||||
function main() {
|
||||
rm -rf build
|
||||
mkdir -p $BUILD_BASE
|
||||
get_os
|
||||
case OS
|
||||
get_go_ver
|
||||
if [ $GOVER == 'go1.10' ]; then
|
||||
export CGO_LDFLAGS_ALLOW=".*"
|
||||
fi
|
||||
case $OS
|
||||
darwin)
|
||||
build_darwin
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user