xref: /aosp_15_r20/external/toolchain-utils/go/go_local (revision 760c253c1ed00ce9abd48f8546f08516e57485fe)
1#!/bin/bash
2
3# Invoke the Go compiler for localhost.
4
5GOOS="linux" GOARCH="amd64" CGO_ENABLED="1" \
6	CC="clang" \
7	CXX="clang++" \
8	exec go "$@"
9