#!/bin/bash

# Invoke the Go compiler for localhost.

GOOS="linux" GOARCH="amd64" CGO_ENABLED="1" \
	CC="gcc" \
	CXX="g++" \
	exec go "$@"