mirror of
https://github.com/golang/go
synced 2024-11-06 02:26:17 -07:00
11 lines
210 B
Plaintext
11 lines
210 B
Plaintext
|
#!/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_32 -l /dev/null -S -e "$@"
|