1#!/bin/bash23# Invoke the Go cross compiler for x86-zgb.4# Uses ../go_target to add PIE flags.5#6# This is just an example for an 386 board.78GOOS="linux"GOARCH="386"CGO_ENABLED="1" \
9CC="i686-pc-linux-gnu-gcc" \
10CXX="i686-pc-linux-gnu-g++" \
11execgo_target"$@"12