go_local revision 878f9d1108230185d5eb9962a11bfaccf534b1f9
1#!/bin/bash
2
3# Invoke the Go compiler for localhost.
4
5GOOS="linux" GOARCH="amd64" CGO_ENABLED="1" \
6	CC="gcc" \
7	CXX="g++" \
8	exec go "$@"
9