Side by Side Diff: src/pkg/syscall/Makefile
Issue 3816043 :
code review 3816043: syscall: Plan 9 support for x86. (Closed)
Patch Set: diff -r a15522fba283 https://go.googlecode.com/hg/
Left:
Base
Patch Set 1: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 2: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 3: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 4: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 5: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 6: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 7: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 8: diff -r fd41b76c8e51 https://go.googlecode.com/hg/
Patch Set 9: diff -r fd41b76c8e51 https://go.googlecode.com/hg/
Patch Set 10: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 11: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 12: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 13: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 14: diff -r fad73d342108 https://go.googlecode.com/hg/
Patch Set 15: diff -r fad73d342108 https://go.googlecode.com/hg/
Patch Set 16: diff -r 6ae937673256 https://go.googlecode.com/hg/
Patch Set 17: diff -r a15522fba283 https://go.googlecode.com/hg/
Patch Set 18: diff -r a15522fba283 https://go.googlecode.com/hg/
Patch Set 19: diff -r a15522fba283 https://go.googlecode.com/hg/
Right:
Patch Set 1: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 2: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 3: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 4: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 5: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 6: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 7: code review 3816043: syscall, os: Plan 9 support for x86.
Patch Set 8: diff -r fd41b76c8e51 https://go.googlecode.com/hg/
Patch Set 9: diff -r fd41b76c8e51 https://go.googlecode.com/hg/
Patch Set 10: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 11: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 12: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 13: diff -r 1d10645da15a https://go.googlecode.com/hg/
Patch Set 14: diff -r fad73d342108 https://go.googlecode.com/hg/
Patch Set 15: diff -r fad73d342108 https://go.googlecode.com/hg/
Patch Set 16: diff -r 6ae937673256 https://go.googlecode.com/hg/
Patch Set 17: diff -r a15522fba283 https://go.googlecode.com/hg/
Patch Set 18: diff -r a15522fba283 https://go.googlecode.com/hg/
Patch Set 19: diff -r a15522fba283 https://go.googlecode.com/hg/
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/pkg/syscall/Makefile
src/pkg/syscall/asm_plan9_386.s
src/pkg/syscall/exec_plan9.go
src/pkg/syscall/mkall.sh
src/pkg/syscall/mksyscall.pl
src/pkg/syscall/mksysnum_plan9.sh
src/pkg/syscall/str.go
src/pkg/syscall/syscall_linux.go
src/pkg/syscall/syscall_plan9.go
src/pkg/syscall/syscall_plan9_386.go
src/pkg/syscall/syscall_unix.go
src/pkg/syscall/syscall_windows.go
src/pkg/syscall/types_plan9.c
src/pkg/syscall/zerrors_plan9_386.go
src/pkg/syscall/zsyscall_plan9_386.go
src/pkg/syscall/zsysnum_plan9_386.go
src/pkg/syscall/ztypes_plan9_386.go
OLD NEW
1 # Copyright 2009 The Go Authors. All rights reserved. 1 # Copyright 2009 The Go Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style 2 # Use of this source code is governed by a BSD-style
3 # license that can be found in the LICENSE file. 3 # license that can be found in the LICENSE file.
4 4
5 include ../../Make.inc 5 include ../../Make.inc
6 6
7 TARG=syscall 7 TARG=syscall
8 GOFILES=\ 8 GOFILES=\
9 str.go\ 9 str.go\
10 syscall.go\ 10 syscall.go\
(...skipping 14 matching lines...) Expand all Loading...
25 syscall_bsd.go\ 25 syscall_bsd.go\
26 syscall_unix.go\ 26 syscall_unix.go\
27 exec_unix.go\ 27 exec_unix.go\
28 28
29 GOFILES_linux=\ 29 GOFILES_linux=\
30 syscall_unix.go\ 30 syscall_unix.go\
31 exec_unix.go\ 31 exec_unix.go\
32 32
33 GOFILES_windows=\ 33 GOFILES_windows=\
34 exec_windows.go 34 exec_windows.go
35 · · · · · · · ·
36 GOFILES_plan9=\
37 exec_plan9.go
35 38
36 OFILES=\ 39 OFILES=\
37 asm_$(GOOS)_$(GOARCH).$O\ 40 asm_$(GOOS)_$(GOARCH).$O\
38 41
39 GOFILES+=$(GOFILES_$(GOOS)) 42 GOFILES+=$(GOFILES_$(GOOS))
40 43
41 include ../../Make.pkg 44 include ../../Make.pkg
OLD NEW