diff options
| author | Rob Pike <r@golang.org> | 2008-08-07 17:36:50 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2008-08-07 17:36:50 -0700 |
| commit | fa7d54ff2e5a3947bfcfa6b7d7a2a0f89daf3db6 (patch) | |
| tree | a35b540003706dc2f9c7ae86d3c04558fd1a4646 /src/make.bash | |
| parent | e3fc124640d01395183d53d1c053b5236883b12f (diff) | |
| download | go-fa7d54ff2e5a3947bfcfa6b7d7a2a0f89daf3db6.tar.xz | |
include syscall in default build
fix an issue with autolib names by compiling to target location
print a bit more when compiling
R=gri
OCL=13988
CL=13988
Diffstat (limited to 'src/make.bash')
| -rwxr-xr-x | src/make.bash | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/make.bash b/src/make.bash index 2d17e798f2..f2543b553d 100755 --- a/src/make.bash +++ b/src/make.bash @@ -18,3 +18,12 @@ do bash make.bash cd .. done + +# do these after go compiler and runtime are built +for i in syscall +do + echo; echo; echo %%%% making $i %%%%; echo + cd $i + make install + cd .. +done |
