Commit de4964a7 authored by Russ Cox's avatar Russ Cox

build: more adjustments for move from src/pkg to src

These were missed in CL 134570043.

Fixes nacl, solaris builds.

TBR=r
CC=golang-codereviews
https://golang.org/cl/136320043
parent c007ce82
...@@ -21,98 +21,97 @@ go src=.. ...@@ -21,98 +21,97 @@ go src=..
link link
testdata testdata
+ +
pkg archive
archive tar
tar testdata
testdata +
+ zip
zip testdata
testdata +
+ compress
compress bzip2
bzip2 testdata
testdata +
+ flate
flate gzip
gzip testdata
testdata +
+ lzw
lzw testdata
testdata
+
zlib
crypto
rsa
testdata
+
tls
testdata
+
debug
dwarf
testdata
+
elf
testdata
+
macho
testdata
+
pe
testdata
+
plan9obj
testdata
+
go
build
+
doc
testdata
+
format
+
parser
+
printer
+
image
testdata
+
draw
gif
jpeg
png
testdata
+
io
+ +
mime zlib
crypto
rsa
testdata
+
tls
testdata
+
debug
dwarf
testdata
+
elf
testdata
+
macho
testdata testdata
+ +
multipart pe
testdata testdata
+
net
http
+ +
plan9obj
testdata testdata
+ +
os go
build
+ +
path doc
filepath testdata
+ +
regexp format
+
parser
+
printer
+
image
testdata
+
draw
gif
jpeg
png
testdata testdata
+ +
strconv io
+
mime
testdata
+
multipart
testdata
+
net
http
+
testdata
+
os
+
path
filepath
+
regexp
testdata
+
strconv
testdata
+
text
template
testdata testdata
+ +
text
template
testdata
+
lib lib
time time
zoneinfo.zip zoneinfo.zip
......
...@@ -72,8 +72,8 @@ export GOROOT=$(pwd)/.. ...@@ -72,8 +72,8 @@ export GOROOT=$(pwd)/..
# Build zip file embedded in package syscall. # Build zip file embedded in package syscall.
gobin=${GOBIN:-$(pwd)/../bin} gobin=${GOBIN:-$(pwd)/../bin}
rm -f pkg/syscall/fstest_nacl.go rm -f syscall/fstest_nacl.go
GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH $gobin/go run ../misc/nacl/mkzip.go -p syscall -r .. ../misc/nacl/testzip.proto pkg/syscall/fstest_nacl.go GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH $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.
export PATH=$(pwd)/../misc/nacl:$PATH export PATH=$(pwd)/../misc/nacl:$PATH
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
// This file exposes various external library functions to Go code in the runtime. // This file exposes various external library functions to Go code in the runtime.
#include "zasm_GOOS_GOARCH.h" #include "zasm_GOOS_GOARCH.h"
#include "../../cmd/ld/textflag.h" #include "textflag.h"
TEXT runtime·libc_chdir(SB),NOSPLIT,$0 TEXT runtime·libc_chdir(SB),NOSPLIT,$0
MOVQ libc·chdir(SB), AX MOVQ libc·chdir(SB), AX
......
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