Commit 1fccbfe9 authored by Cherry Zhang's avatar Cherry Zhang

nacl*.bash: pass flags to make.bash

Just like all.bash passes flags to make.bash, I think it makes
sense that naclmake.bash and nacltest.bash do so as well. For
example, on a slow machine I can do "./nacltest.bash -v" to see
the build progress.

Change-Id: Id766dd590e6b83e8b5345822580dc1b05eac8ea3
Reviewed-on: https://go-review.googlesource.com/93117
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
Reviewed-by: default avatarAustin Clements <austin@google.com>
parent 5a43a271
...@@ -45,4 +45,4 @@ gobin=$GOROOT_BOOTSTRAP/bin ...@@ -45,4 +45,4 @@ gobin=$GOROOT_BOOTSTRAP/bin
GOROOT=$GOROOT_BOOTSTRAP $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go GOROOT=$GOROOT_BOOTSTRAP $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto syscall/fstest_nacl.go
# Run standard build and tests. # Run standard build and tests.
GOOS=nacl GOARCH=$naclGOARCH ./make.bash GOOS=nacl GOARCH=$naclGOARCH ./make.bash "$@"
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
set -e set -e
ulimit -c 0 ulimit -c 0
. ./naclmake.bash . ./naclmake.bash "$@"
# Check GOARCH. # Check GOARCH.
case "$naclGOARCH" in case "$naclGOARCH" in
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment