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=runtime | 7 TARG=runtime |
8 | 8 |
9 # Set SIZE to 32 or 64. | 9 # Set SIZE to 32 or 64. |
10 SIZE_386=32 | 10 SIZE_386=32 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 mem.$O\ | 62 mem.$O\ |
63 memmove.$O\ | 63 memmove.$O\ |
64 mfinal.$O\ | 64 mfinal.$O\ |
65 mfixalloc.$O\ | 65 mfixalloc.$O\ |
66 mgc0.$O\ | 66 mgc0.$O\ |
67 mheap.$O\ | 67 mheap.$O\ |
68 mprof.$O\ | 68 mprof.$O\ |
69 msize.$O\ | 69 msize.$O\ |
70 print.$O\ | 70 print.$O\ |
71 proc.$O\ | 71 proc.$O\ |
| 72 proclocal.$O\ |
72 rune.$O\ | 73 rune.$O\ |
73 runtime.$O\ | 74 runtime.$O\ |
74 runtime1.$O\ | 75 runtime1.$O\ |
75 rt0.$O\ | 76 rt0.$O\ |
76 sema.$O\ | 77 sema.$O\ |
77 signal.$O\ | 78 signal.$O\ |
78 sigqueue.$O\ | 79 sigqueue.$O\ |
79 slice.$O\ | 80 slice.$O\ |
80 string.$O\ | 81 string.$O\ |
81 symtab.$O\ | 82 symtab.$O\ |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 | 160 |
160 # 386 traceback is really amd64 traceback | 161 # 386 traceback is really amd64 traceback |
161 ifeq ($(GOARCH),386) | 162 ifeq ($(GOARCH),386) |
162 traceback.$O: amd64/traceback.c | 163 traceback.$O: amd64/traceback.c |
163 $(CC) $(CFLAGS) $< | 164 $(CC) $(CFLAGS) $< |
164 endif | 165 endif |
165 | 166 |
166 runtime_defs.go: proc.c iface.c hashmap.c chan.c | 167 runtime_defs.go: proc.c iface.c hashmap.c chan.c |
167 CC="$(CC)" CFLAGS="$(CFLAGS)" ./mkgodefs.sh $^ > $@.x | 168 CC="$(CC)" CFLAGS="$(CFLAGS)" ./mkgodefs.sh $^ > $@.x |
168 mv -f $@.x $@ | 169 mv -f $@.x $@ |
OLD | NEW |