I was able to create a sample beat using developer guide (kudos to it). However when i make a beat in Mac am unable to run it on a linux x86 box. I provided "GOOS=linux GOARCH=386" in Makefile and then ran make. However the executable is not working in linux environment.
I see cannot execute binary file: Exec format error error when i run beat.
My machine is
uname -a
Linux 4.2.0-42-generic #49~14.04.1-Ubuntu SMP Wed Jun 29 20:22:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
And i tried following options
GOOS=linux
GOARCH=amd64
GOX_FLAGS=-arch="amd64"
#GOPACKAGES=$(shell glide novendor)
Appreciate your time.