Compare commits

...

3 Commits

Author SHA1 Message Date
TonyChyi
c57530386c p 2018-03-20 13:35:57 +08:00
TonyChyi
f9f1d77182 f 2018-03-20 13:29:19 +08:00
TonyChyi
b346859be0 f 2018-03-20 11:56:03 +08:00
2 changed files with 18 additions and 2 deletions

View File

@ -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)

View File

@ -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
;;