mirror of
https://github.com/golang/go
synced 2024-11-06 06:36:20 -07:00
11 lines
279 B
Plaintext
11 lines
279 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 nacl_helper_bootstrap_arm $(which sel_ldr_arm) --reserved_at_zero=0xXXXXXXXXXXXXXXXX -l /dev/null -S -e "$@"
|