go_shamu revision f637a050cc27b206824d7b1262d2aa9de0668bef
1#!/bin/bash
2
3# Invoke the Go cross compiler for shamu.
4# Uses ../go_target to add PIE flags.
5#
6# This is just an example for an arm device.
7
8GOOS="android" GOARCH="arm" CGO_ENABLED="1" \
9	CC="arm-linux-androideabi-gcc" \
10	CXX="arm-linux-androideabi-g++" \
11	exec go_target "$@"
12