mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
9cb4963d18
LGTM=josharian, dan.kortschak R=golang-codereviews, josharian, dan.kortschak CC=golang-codereviews https://golang.org/cl/75080043
10 lines
209 B
Bash
Executable file
10 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
|
|
eval $(go env)
|
|
|
|
export NACLENV_GOARCH=$GOARCH
|
|
export NACLENV_GOOS=$GOOS
|
|
export NACLENV_GOROOT=/go
|
|
export NACLENV_NACLPWD=$(pwd | sed "s;$GOROOT;/go;")
|
|
|
|
exec sel_ldr_x86_64 -l /dev/null -S -e "$@"
|