You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
286 B
12 lines
286 B
7 months ago
|
#!/bin/bash
|
||
|
|
||
|
# Invoke the Go cross compiler for marlin32.
|
||
|
# Uses ../go_target to add PIE flags.
|
||
|
#
|
||
|
# This is just an example for an arm device.
|
||
|
|
||
|
GOOS="android" GOARCH="arm" CGO_ENABLED="1" \
|
||
|
CC="arm-linux-androideabi-clang" \
|
||
|
CXX="arm-linux-androideabi-clang++" \
|
||
|
exec go_target "$@"
|