runtime: copy memory hash code from Go 1.7
[platform/upstream/gcc.git] / libgo / Makefile.am
1 # Makefile.am -- Go library Makefile.
2
3 # Copyright 2009 The Go Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style
5 # license that can be found in the LICENSE file.
6
7 # Process this file with autoreconf to produce Makefile.in.
8
9 # Go support.
10 SUFFIXES = .c .go .gox .o .obj .lo .a
11
12 if LIBGO_IS_RTEMS
13 subdirs = testsuite
14 endif
15
16 SUBDIRS = ${subdirs}
17
18 gcc_version := $(shell $(GOC) -dumpversion)
19
20 MAINT_CHARSET = latin1
21
22 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
23 PWD_COMMAND = $${PWDCMD-pwd}
24 STAMP = echo timestamp >
25
26 toolexecdir = $(glibgo_toolexecdir)
27 toolexeclibdir = $(glibgo_toolexeclibdir)
28 toolexeclibgodir = $(nover_glibgo_toolexeclibdir)/go/$(gcc_version)/$(target_alias)
29 libexecsubdir = $(libexecdir)/gcc/$(target_alias)/$(gcc_version)
30
31 LIBFFI = @LIBFFI@
32 LIBFFIINCS = @LIBFFIINCS@
33
34 LIBATOMIC = @LIBATOMIC@
35
36 WARN_CFLAGS = $(WARN_FLAGS) $(WERROR)
37
38 # -I/-D flags to pass when compiling.
39 AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS)
40
41 ACLOCAL_AMFLAGS = -I ./config -I ../config
42
43 AM_CFLAGS = -fexceptions -fnon-call-exceptions -fplan9-extensions \
44         $(SPLIT_STACK) $(WARN_CFLAGS) \
45         $(STRINGOPS_FLAG) $(OSCFLAGS) \
46         -I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \
47         -I $(MULTIBUILDTOP)../../gcc/include
48
49 if USING_SPLIT_STACK
50 AM_LDFLAGS = -XCClinker $(SPLIT_STACK)
51 endif
52
53 # Multilib support.
54 MAKEOVERRIDES=
55
56 # Work around what appears to be a GNU make  handling MAKEFLAGS
57 # values defined in terms of make variables, as is the case for CC and
58 # friends when we are called from the top level Makefile.
59 AM_MAKEFLAGS = \
60         "AR_FLAGS=$(AR_FLAGS)" \
61         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
62         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
63         "CFLAGS=$(CFLAGS)" \
64         "CXXFLAGS=$(CXXFLAGS)" \
65         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
66         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
67         "GOC_FOR_TARGET=$(GOC_FOR_TARGET)" \
68         "GOC=$(GOC)" \
69         "GOCFLAGS=$(GOCFLAGS)" \
70         "INSTALL=$(INSTALL)" \
71         "INSTALL_DATA=$(INSTALL_DATA)" \
72         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
73         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
74         "LDFLAGS=$(LDFLAGS)" \
75         "LIBCFLAGS=$(LIBCFLAGS)" \
76         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
77         "MAKE=$(MAKE)" \
78         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
79         "PICFLAG=$(PICFLAG)" \
80         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
81         "SHELL=$(SHELL)" \
82         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
83         "exec_prefix=$(exec_prefix)" \
84         "infodir=$(infodir)" \
85         "libdir=$(libdir)" \
86         "includedir=$(includedir)" \
87         "prefix=$(prefix)" \
88         "tooldir=$(tooldir)" \
89         "gxx_include_dir=$(gxx_include_dir)" \
90         "AR=$(AR)" \
91         "AS=$(AS)" \
92         "LD=$(LD)" \
93         "RANLIB=$(RANLIB)" \
94         "NM=$(NM)" \
95         "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
96         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
97         "DESTDIR=$(DESTDIR)" \
98         "WERROR=$(WERROR)"
99
100 # Subdir rules rely on $(FLAGS_TO_PASS)
101 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
102
103 if GOC_IS_LLGO
104 toolexeclib_LTLIBRARIES = libgo-llgo.la
105 toolexeclib_LIBRARIES = libgobegin-llgo.a
106 else
107 toolexeclib_LTLIBRARIES = libgo.la
108 toolexeclib_LIBRARIES = libgobegin.a libgolibbegin.a
109 endif
110
111 toolexeclibgo_DATA = \
112         bufio.gox \
113         bytes.gox \
114         context.gox \
115         crypto.gox \
116         encoding.gox \
117         errors.gox \
118         expvar.gox \
119         flag.gox \
120         fmt.gox \
121         hash.gox \
122         html.gox \
123         image.gox \
124         io.gox \
125         log.gox \
126         math.gox \
127         mime.gox \
128         net.gox \
129         os.gox \
130         path.gox \
131         reflect.gox \
132         regexp.gox \
133         runtime.gox \
134         sort.gox \
135         strconv.gox \
136         strings.gox \
137         sync.gox \
138         syscall.gox \
139         testing.gox \
140         time.gox \
141         unicode.gox
142
143 toolexeclibgoarchivedir = $(toolexeclibgodir)/archive
144
145 toolexeclibgoarchive_DATA = \
146         archive/tar.gox \
147         archive/zip.gox
148
149 toolexeclibgocompressdir = $(toolexeclibgodir)/compress
150
151 toolexeclibgocompress_DATA = \
152         compress/bzip2.gox \
153         compress/flate.gox \
154         compress/gzip.gox \
155         compress/lzw.gox \
156         compress/zlib.gox
157
158 toolexeclibgocontainerdir = $(toolexeclibgodir)/container
159
160 toolexeclibgocontainer_DATA = \
161         container/heap.gox \
162         container/list.gox \
163         container/ring.gox
164
165 toolexeclibgocryptodir = $(toolexeclibgodir)/crypto
166
167 toolexeclibgocrypto_DATA = \
168         crypto/aes.gox \
169         crypto/cipher.gox \
170         crypto/des.gox \
171         crypto/dsa.gox \
172         crypto/ecdsa.gox \
173         crypto/elliptic.gox \
174         crypto/hmac.gox \
175         crypto/md5.gox \
176         crypto/rand.gox \
177         crypto/rc4.gox \
178         crypto/rsa.gox \
179         crypto/sha1.gox \
180         crypto/sha256.gox \
181         crypto/sha512.gox \
182         crypto/subtle.gox \
183         crypto/tls.gox \
184         crypto/x509.gox
185
186 toolexeclibgocryptox509dir = $(toolexeclibgocryptodir)/x509
187
188 toolexeclibgocryptox509_DATA = \
189         crypto/x509/pkix.gox
190
191 toolexeclibgodatabasedir = $(toolexeclibgodir)/database
192
193 toolexeclibgodatabase_DATA = \
194         database/sql.gox
195
196 toolexeclibgodatabasesqldir = $(toolexeclibgodatabasedir)/sql
197
198 toolexeclibgodatabasesql_DATA = \
199         database/sql/driver.gox
200
201 toolexeclibgodebugdir = $(toolexeclibgodir)/debug
202
203 toolexeclibgodebug_DATA = \
204         debug/dwarf.gox \
205         debug/elf.gox \
206         debug/gosym.gox \
207         debug/macho.gox \
208         debug/pe.gox \
209         debug/plan9obj.gox
210
211 toolexeclibgoencodingdir = $(toolexeclibgodir)/encoding
212
213 toolexeclibgoencoding_DATA = \
214         encoding/ascii85.gox \
215         encoding/asn1.gox \
216         encoding/base32.gox \
217         encoding/base64.gox \
218         encoding/binary.gox \
219         encoding/csv.gox \
220         encoding/gob.gox \
221         encoding/hex.gox \
222         encoding/json.gox \
223         encoding/pem.gox \
224         encoding/xml.gox
225
226 toolexeclibgoexpdir = $(toolexeclibgodir)/exp
227
228 toolexeclibgoexp_DATA = \
229         exp/proxy.gox \
230         exp/terminal.gox
231
232 toolexeclibgogodir = $(toolexeclibgodir)/go
233
234 toolexeclibgogo_DATA = \
235         go/ast.gox \
236         go/build.gox \
237         go/constant.gox \
238         go/doc.gox \
239         go/format.gox \
240         go/importer.gox \
241         go/parser.gox \
242         go/printer.gox \
243         go/scanner.gox \
244         go/token.gox \
245         go/types.gox
246
247 toolexeclibgohashdir = $(toolexeclibgodir)/hash
248
249 toolexeclibgohash_DATA = \
250         hash/adler32.gox \
251         hash/crc32.gox \
252         hash/crc64.gox \
253         hash/fnv.gox
254
255 toolexeclibgohtmldir = $(toolexeclibgodir)/html
256
257 toolexeclibgohtml_DATA = \
258         html/template.gox
259
260 toolexeclibgoimagedir = $(toolexeclibgodir)/image
261
262 toolexeclibgoimage_DATA = \
263         image/color.gox \
264         image/draw.gox \
265         image/gif.gox \
266         image/jpeg.gox \
267         image/png.gox
268
269 toolexeclibgoimagecolordir = $(toolexeclibgoimagedir)/color
270
271 toolexeclibgoimagecolor_DATA = \
272         image/color/palette.gox
273
274 toolexeclibgoindexdir = $(toolexeclibgodir)/index
275
276 toolexeclibgoindex_DATA = \
277         index/suffixarray.gox
278
279 toolexeclibgoiodir = $(toolexeclibgodir)/io
280
281 toolexeclibgoio_DATA = \
282         io/ioutil.gox
283
284 toolexeclibgologdir = $(toolexeclibgodir)/log
285
286 toolexeclibgolog_DATA = \
287         log/syslog.gox
288
289 toolexeclibgomathdir = $(toolexeclibgodir)/math
290
291 toolexeclibgomath_DATA = \
292         math/big.gox \
293         math/cmplx.gox \
294         math/rand.gox
295
296 toolexeclibgomimedir = $(toolexeclibgodir)/mime
297
298 toolexeclibgomime_DATA = \
299         mime/multipart.gox \
300         mime/quotedprintable.gox
301
302 toolexeclibgonetdir = $(toolexeclibgodir)/net
303
304 toolexeclibgonet_DATA = \
305         net/http.gox \
306         net/mail.gox \
307         net/rpc.gox \
308         net/smtp.gox \
309         net/textproto.gox \
310         net/url.gox
311
312 toolexeclibgonethttpdir = $(toolexeclibgonetdir)/http
313
314 toolexeclibgonethttp_DATA = \
315         net/http/cgi.gox \
316         net/http/cookiejar.gox \
317         net/http/fcgi.gox \
318         net/http/httptest.gox \
319         net/http/httptrace.gox \
320         net/http/httputil.gox \
321         net/http/pprof.gox
322
323 toolexeclibgonetrpcdir = $(toolexeclibgonetdir)/rpc
324
325 toolexeclibgonetrpc_DATA = \
326         net/rpc/jsonrpc.gox
327
328 toolexeclibgoosdir = $(toolexeclibgodir)/os
329
330 toolexeclibgoos_DATA = \
331         os/exec.gox \
332         os/signal.gox \
333         os/user.gox
334
335 toolexeclibgopathdir = $(toolexeclibgodir)/path
336
337 toolexeclibgopath_DATA = \
338         path/filepath.gox
339
340 toolexeclibgoregexpdir = $(toolexeclibgodir)/regexp
341
342 toolexeclibgoregexp_DATA = \
343         regexp/syntax.gox
344
345 toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime
346
347 toolexeclibgoruntime_DATA = \
348         runtime/debug.gox \
349         runtime/pprof.gox
350
351 toolexeclibgosyncdir = $(toolexeclibgodir)/sync
352
353 toolexeclibgosync_DATA = \
354         sync/atomic.gox
355
356 toolexeclibgotestingdir = $(toolexeclibgodir)/testing
357
358 toolexeclibgotesting_DATA = \
359         testing/iotest.gox \
360         testing/quick.gox
361
362 toolexeclibgotextdir = $(toolexeclibgodir)/text
363
364 toolexeclibgotext_DATA = \
365         text/scanner.gox \
366         text/tabwriter.gox \
367         text/template.gox
368
369 toolexeclibgotexttemplatedir = $(toolexeclibgotextdir)/template
370
371 toolexeclibgotexttemplate_DATA = \
372         text/template/parse.gox
373
374 toolexeclibgounicodedir = $(toolexeclibgodir)/unicode
375
376 toolexeclibgounicode_DATA = \
377         unicode/utf16.gox \
378         unicode/utf8.gox
379
380 if HAVE_SYS_MMAN_H
381 runtime_mem_file = runtime/mem.c
382 else
383 runtime_mem_file = runtime/mem_posix_memalign.c
384 endif
385
386 if LIBGO_IS_RTEMS
387 rtems_task_variable_add_file = runtime/rtems-task-variable-add.c
388 else
389 rtems_task_variable_add_file =
390 endif
391
392 if LIBGO_IS_LINUX
393 runtime_thread_files = runtime/thread-linux.c
394 else
395 runtime_thread_files = runtime/thread-sema.c
396 endif
397
398 if LIBGO_IS_LINUX
399 runtime_getncpu_file = runtime/getncpu-linux.c
400 else
401 if LIBGO_IS_DARWIN
402 runtime_getncpu_file = runtime/getncpu-bsd.c
403 else
404 if LIBGO_IS_IRIX
405 runtime_getncpu_file = runtime/getncpu-irix.c
406 else
407 if LIBGO_IS_SOLARIS
408 runtime_getncpu_file = runtime/getncpu-solaris.c
409 else
410 if LIBGO_IS_FREEBSD
411 runtime_getncpu_file = runtime/getncpu-bsd.c
412 else
413 if LIBGO_IS_NETBSD
414 runtime_getncpu_file = runtime/getncpu-bsd.c
415 else
416 runtime_getncpu_file = runtime/getncpu-none.c
417 endif
418 endif
419 endif
420 endif
421 endif
422 endif
423
424 runtime_files = \
425         runtime/aeshash.c \
426         runtime/go-assert.c \
427         runtime/go-breakpoint.c \
428         runtime/go-caller.c \
429         runtime/go-callers.c \
430         runtime/go-cdiv.c \
431         runtime/go-cgo.c \
432         runtime/go-construct-map.c \
433         runtime/go-ffi.c \
434         runtime/go-fieldtrack.c \
435         runtime/go-matherr.c \
436         runtime/go-memclr.c \
437         runtime/go-memcmp.c \
438         runtime/go-memequal.c \
439         runtime/go-memmove.c \
440         runtime/go-nanotime.c \
441         runtime/go-now.c \
442         runtime/go-new.c \
443         runtime/go-nosys.c \
444         runtime/go-reflect-call.c \
445         runtime/go-runtime-error.c \
446         runtime/go-setenv.c \
447         runtime/go-signal.c \
448         runtime/go-strslice.c \
449         runtime/go-type-complex.c \
450         runtime/go-type-float.c \
451         runtime/go-type-identity.c \
452         runtime/go-type-string.c \
453         runtime/go-typedesc-equal.c \
454         runtime/go-unsafe-new.c \
455         runtime/go-unsafe-newarray.c \
456         runtime/go-unsafe-pointer.c \
457         runtime/go-unsetenv.c \
458         runtime/go-unwind.c \
459         runtime/go-varargs.c \
460         runtime/env_posix.c \
461         runtime/heapdump.c \
462         runtime/mcache.c \
463         runtime/mcentral.c \
464         $(runtime_mem_file) \
465         runtime/mfixalloc.c \
466         runtime/mgc0.c \
467         runtime/mheap.c \
468         runtime/msize.c \
469         runtime/panic.c \
470         runtime/parfor.c \
471         runtime/print.c \
472         runtime/proc.c \
473         runtime/runtime_c.c \
474         runtime/thread.c \
475         $(runtime_thread_files) \
476         runtime/yield.c \
477         $(rtems_task_variable_add_file) \
478         malloc.c \
479         $(runtime_getncpu_file)
480
481 goc2c.$(OBJEXT): runtime/goc2c.c
482         $(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) $<
483
484 goc2c: goc2c.$(OBJEXT)
485         $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $<
486
487 malloc.c: $(srcdir)/runtime/malloc.goc goc2c
488         ./goc2c $< > $@.tmp
489         mv -f $@.tmp $@
490
491 %.c: $(srcdir)/runtime/%.goc goc2c
492         ./goc2c $< > $@.tmp
493         mv -f $@.tmp $@
494
495 version.go: s-version; @true
496 s-version: Makefile
497         rm -f version.go.tmp
498         echo "package sys" > version.go.tmp
499         echo 'const DefaultGoroot = "$(prefix)"' >> version.go.tmp
500         echo 'const TheVersion = "'`cat $(srcdir)/VERSION | sed 1q`' '`$(GOC) --version | sed 1q`'"' >> version.go.tmp
501         echo 'const GOARCH = "'$(GOARCH)'"' >> version.go.tmp
502         echo 'const GOOS = "'$(GOOS)'"' >> version.go.tmp
503         echo 'const GccgoToolDir = "$(libexecsubdir)"' >> version.go.tmp
504         echo >> version.go.tmp
505         echo "type ArchFamilyType int" >> version.go.tmp
506         echo >> version.go.tmp
507         echo "const (" >> version.go.tmp
508         echo "  UNKNOWN ArchFamilyType = iota" >> version.go.tmp
509         for a in $(ALLGOARCHFAMILY); do \
510           echo "        $${a}" >> version.go.tmp; \
511         done
512         echo ")" >> version.go.tmp
513         echo >> version.go.tmp
514         for a in $(ALLGOARCH); do \
515           f=`echo $${a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`; \
516           n="$${f}`echo $${a} | sed -e 's/.//'`"; \
517           if test "$${a}" = "$(GOARCH)"; then \
518             echo "const Goarch$${n} = 1" >> version.go.tmp; \
519           else \
520             echo "const Goarch$${n} = 0" >> version.go.tmp; \
521           fi; \
522         done
523         echo >> version.go.tmp
524         echo "const (" >> version.go.tmp
525         echo "  ArchFamily = $(GOARCH_FAMILY)" >> version.go.tmp
526         echo "  BigEndian = $(GOARCH_BIGENDIAN)" >> version.go.tmp
527         echo "  CacheLineSize = $(GOARCH_CACHELINESIZE)" >> version.go.tmp
528         echo "  PhysPageSize = $(GOARCH_PHYSPAGESIZE)" >> version.go.tmp
529         echo "  PCQuantum = $(GOARCH_PCQUANTUM)" >> version.go.tmp
530         echo "  Int64Align = $(GOARCH_INT64ALIGN)" >> version.go.tmp
531         echo "  HugePageSize = $(GOARCH_HUGEPAGESIZE)" >> version.go.tmp
532         echo "  MinFrameSize = $(GOARCH_MINFRAMESIZE)" >> version.go.tmp
533         echo ")" >> version.go.tmp
534         echo >> version.go.tmp
535         for a in $(ALLGOOS); do \
536           f=`echo $${a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`; \
537           n="$${f}`echo $${a} | sed -e 's/.//'`"; \
538           if test "$${a}" = "$(GOOS)"; then \
539             echo "const Goos$${n} = 1" >> version.go.tmp; \
540           else \
541             echo "const Goos$${n} = 0" >> version.go.tmp; \
542           fi; \
543         done
544         echo >> version.go.tmp
545         echo "type Uintreg uintptr" >> version.go.tmp
546         $(SHELL) $(srcdir)/mvifdiff.sh version.go.tmp version.go
547         $(STAMP) $@
548
549 runtime_sysinfo.go: s-runtime_sysinfo; @true
550 s-runtime_sysinfo: $(srcdir)/mkrsysinfo.sh gen-sysinfo.go
551         $(SHELL) $(srcdir)/mkrsysinfo.sh
552         $(SHELL) $(srcdir)/mvifdiff.sh tmp-runtime_sysinfo.go runtime_sysinfo.go
553         $(STAMP) $@
554
555 sigtab.go: s-sigtab; @true
556 s-sigtab: $(srcdir)/mksigtab.sh gen-sysinfo.go
557         GOOS=$(GOOS) $(SHELL) $(srcdir)/mksigtab.sh > tmp-sigtab.go
558         $(SHELL) $(srcdir)/mvifdiff.sh tmp-sigtab.go sigtab.go
559         $(STAMP) $@
560
561 runtime.inc: s-runtime-inc; @true
562 s-runtime-inc: runtime.lo Makefile
563         rm -f runtime.inc.tmp2
564         grep -v "#define _" runtime.inc.tmp | grep -v "#define c[01] " > runtime.inc.tmp2
565         for pattern in '_[GP][a-z]' _Max _Lock _Sig _Trace _MHeap _Num; do \
566           grep "#define $$pattern" runtime.inc.tmp >> runtime.inc.tmp2; \
567         done
568         $(SHELL) $(srcdir)/mvifdiff.sh runtime.inc.tmp2 runtime.inc
569         $(STAMP) $@
570
571 noinst_DATA = zstdpkglist.go
572
573 # Generate the list of go std packages that were included in libgo
574 zstdpkglist.go: s-zstdpkglist; @true
575 s-zstdpkglist: Makefile
576         rm -f zstdpkglist.go.tmp
577         echo 'package main' > zstdpkglist.go.tmp
578         echo "" >> zstdpkglist.go.tmp
579         echo 'var stdpkg = map[string]bool{' >> zstdpkglist.go.tmp
580         echo $(libgo_go_objs) 'unsafe.lo' 'runtime/cgo.lo' | sed 's/\.lo /\": true,\n/g' | grep -v _c | sed 's/\.lo/\": true,/' | sed 's/^/\t\"/' | sort -u >> zstdpkglist.go.tmp
581         echo '}' >> zstdpkglist.go.tmp
582         $(SHELL) $(srcdir)/mvifdiff.sh zstdpkglist.go.tmp zstdpkglist.go
583         $(STAMP) $@
584
585 if LIBGO_IS_LINUX
586 syscall_epoll_file = epoll.go
587 else
588 syscall_epoll_file =
589 endif
590
591 libcalls.go: s-libcalls; @true
592 s-libcalls: libcalls-list go/syscall/mksyscall.awk $(srcdir)/go/syscall/*.go
593         rm -f libcalls.go.tmp
594         $(AWK) -f $(srcdir)/go/syscall/mksyscall.awk `cat libcalls-list` > libcalls.go.tmp
595         $(SHELL) $(srcdir)/mvifdiff.sh libcalls.go.tmp libcalls.go
596         $(STAMP) $@
597
598 libcalls-list: s-libcalls-list; @true
599 s-libcalls-list: Makefile $(srcdir)/go/syscall/*.go
600         rm -f libcalls-list.tmp
601         $(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/syscall $(matchargs_syscall) > libcalls-list.tmp
602         $(SHELL) $(srcdir)/mvifdiff.sh libcalls-list.tmp libcalls-list
603         $(STAMP) $@
604
605 syscall_arch.go: s-syscall_arch; @true
606 s-syscall_arch: Makefile
607         rm -f syscall_arch.go.tmp
608         echo "package syscall" > syscall_arch.go.tmp
609         echo 'const ARCH = "'$(GOARCH)'"' >> syscall_arch.go.tmp
610         echo 'const OS = "'$(GOOS)'"' >> syscall_arch.go.tmp
611         $(SHELL) $(srcdir)/mvifdiff.sh syscall_arch.go.tmp syscall_arch.go
612         $(STAMP) $@
613
614 SYSINFO_FLAGS = \
615         $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
616         $(CPPFLAGS) $(OSCFLAGS) -O
617
618 gen-sysinfo.go: s-gen-sysinfo; @true
619 s-gen-sysinfo: $(srcdir)/sysinfo.c config.h
620         $(CC) $(SYSINFO_FLAGS) -fdump-go-spec=tmp-gen-sysinfo.go -std=gnu99 -S -o sysinfo.s $(srcdir)/sysinfo.c
621         rm -f sysinfo.s
622         $(SHELL) $(srcdir)/mvifdiff.sh tmp-gen-sysinfo.go gen-sysinfo.go
623         $(STAMP) $@
624
625 errno.i: s-errno; @true
626 s-errno:
627         echo '#include <errno.h>' | $(CC) $(SYSINFO_FLAGS) -x c - -E -dM > tmp-errno.i
628         $(SHELL) $(srcdir)/mvifdiff.sh tmp-errno.i errno.i
629         $(STAMP) $@
630
631 sysinfo.go: s-sysinfo; @true
632 s-sysinfo: $(srcdir)/mksysinfo.sh gen-sysinfo.go errno.i
633         $(SHELL) $(srcdir)/mksysinfo.sh
634         $(SHELL) $(srcdir)/mvifdiff.sh tmp-sysinfo.go sysinfo.go
635         $(STAMP) $@
636
637 # The epoll struct has an embedded union and is packed on x86_64,
638 # which is too complicated for mksysinfo.sh.  We find the offset of
639 # the only field we care about in configure.ac, and generate the
640 # struct here.
641 epoll.go: s-epoll; @true
642 s-epoll: Makefile
643         rm -f epoll.go.tmp
644         echo 'package syscall' > epoll.go.tmp
645         echo 'type EpollEvent struct {' >> epoll.go.tmp
646         echo '  Events uint32' >> epoll.go.tmp
647         case "$(SIZEOF_STRUCT_EPOLL_EVENT),$(STRUCT_EPOLL_EVENT_FD_OFFSET)" in \
648         0,0) echo 1>&2 "*** struct epoll_event data.fd offset unknown"; \
649            exit 1; ;; \
650         8,4) echo '     Fd int32' >> epoll.go.tmp; ;; \
651         12,4) echo '    Fd int32' >> epoll.go.tmp; \
652            echo '       Pad [4]byte' >> epoll.go.tmp; ;; \
653         12,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
654            echo '       Fd int32' >> epoll.go.tmp; ;; \
655         16,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
656            echo '       Fd int32' >> epoll.go.tmp; \
657            echo '       Pad2 [4]byte' >> epoll.go.tmp; ;; \
658         *) echo 1>&2 "*** struct epoll_event unsupported"; \
659            exit 1; ;; \
660         esac
661         echo '}' >> epoll.go.tmp
662         $(SHELL) $(srcdir)/mvifdiff.sh epoll.go.tmp epoll.go
663         $(STAMP) $@
664
665 if LIBGO_IS_LINUX
666 syscall_lib_clone_lo = syscall/clone_linux.lo
667 else
668 syscall_lib_clone_lo =
669 endif
670
671 PACKAGES = \
672         archive/tar \
673         archive/zip \
674         bufio \
675         bytes \
676         compress/bzip2 \
677         compress/flate \
678         compress/gzip \
679         compress/lzw \
680         compress/zlib \
681         container/heap \
682         container/list \
683         container/ring \
684         context \
685         crypto \
686         crypto/aes \
687         crypto/cipher \
688         crypto/des \
689         crypto/dsa \
690         crypto/ecdsa \
691         crypto/elliptic \
692         crypto/hmac \
693         crypto/md5 \
694         crypto/rand \
695         crypto/rc4 \
696         crypto/rsa \
697         crypto/sha1 \
698         crypto/sha256 \
699         crypto/sha512 \
700         crypto/subtle \
701         crypto/tls \
702         crypto/x509 \
703         crypto/x509/pkix \
704         database/sql \
705         database/sql/driver \
706         debug/dwarf \
707         debug/elf \
708         debug/gosym \
709         debug/macho \
710         debug/pe \
711         debug/plan9obj \
712         encoding \
713         encoding/ascii85 \
714         encoding/asn1 \
715         encoding/base32 \
716         encoding/base64 \
717         encoding/binary \
718         encoding/csv \
719         encoding/gob \
720         encoding/hex \
721         encoding/json \
722         encoding/pem \
723         encoding/xml \
724         errors \
725         exp/proxy \
726         exp/terminal \
727         expvar \
728         flag \
729         fmt \
730         go/ast \
731         go/build \
732         go/constant \
733         go/doc \
734         go/format \
735         go/importer \
736         go/internal/gccgoimporter \
737         go/internal/gcimporter \
738         go/parser \
739         go/printer \
740         go/scanner \
741         go/token \
742         go/types \
743         golang_org/x/net/http2/hpack \
744         golang_org/x/net/lex/httplex \
745         hash \
746         hash/adler32 \
747         hash/crc32 \
748         hash/crc64 \
749         hash/fnv \
750         html \
751         html/template \
752         image \
753         image/color \
754         image/color/palette \
755         image/draw \
756         image/gif \
757         image/internal/imageutil \
758         image/jpeg \
759         image/png \
760         index/suffixarray \
761         internal/nettrace \
762         internal/race \
763         internal/singleflight \
764         internal/syscall/unix \
765         internal/testenv \
766         internal/trace \
767         io \
768         io/ioutil \
769         log \
770         log/syslog \
771         math \
772         math/big \
773         math/cmplx \
774         math/rand \
775         mime \
776         mime/multipart \
777         mime/quotedprintable \
778         net \
779         net/http \
780         net/http/cgi \
781         net/http/cookiejar \
782         net/http/fcgi \
783         net/http/httptest \
784         net/http/httptrace \
785         net/http/httputil \
786         net/http/internal \
787         net/http/pprof \
788         net/internal/socktest \
789         net/mail \
790         net/rpc \
791         net/rpc/jsonrpc \
792         net/smtp \
793         net/textproto \
794         net/url \
795         os \
796         os/exec \
797         os/signal \
798         os/user \
799         path \
800         path/filepath \
801         reflect \
802         regexp \
803         regexp/syntax \
804         runtime \
805         runtime/debug \
806         runtime/internal/atomic \
807         runtime/internal/sys \
808         runtime/pprof \
809         sort \
810         strconv \
811         strings \
812         sync \
813         sync/atomic \
814         syscall \
815         testing \
816         testing/iotest \
817         testing/quick \
818         text/scanner \
819         text/tabwriter \
820         text/template \
821         text/template/parse \
822         time \
823         unicode \
824         unicode/utf16 \
825         unicode/utf8
826
827 libgo_go_objs = \
828         $(addsuffix .lo,$(PACKAGES)) \
829         bytes/index.lo \
830         reflect/makefunc_ffi_c.lo \
831         strings/index.lo \
832         $(syscall_lib_clone_lo) \
833         syscall/errno.lo \
834         syscall/signame.lo \
835         syscall/wait.lo \
836         $(golang_org_x_net_route_lo) \
837         log/syslog/syslog_c.lo \
838         $(os_lib_inotify_lo) \
839         runtime/internal/atomic_c.lo \
840         sync/atomic_c.lo
841
842 libgo_ldflags = \
843         -version-info $(libtool_VERSION) $(PTHREAD_CFLAGS) $(AM_LDFLAGS)
844
845 libgo_libadd = \
846         $(libgo_go_objs) ../libbacktrace/libbacktrace.la \
847         $(LIBATOMIC) $(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS)
848
849 libgo_la_SOURCES = $(runtime_files)
850 libgo_la_LDFLAGS = $(libgo_ldflags)
851 libgo_la_LIBADD = $(libgo_libadd)
852
853 libgo_llgo_la_SOURCES = $(runtime_files)
854 libgo_llgo_la_LDFLAGS = $(libgo_ldflags)
855 libgo_llgo_la_LIBADD = $(libgo_libadd)
856
857 libgobegin_a_SOURCES = \
858         runtime/go-main.c
859
860 libgobegin_llgo_a_SOURCES = \
861         runtime/go-main.c
862
863 # Use -fPIC for libgobegin so that it can be put in a PIE.
864 libgobegin_a_CFLAGS = $(AM_CFLAGS) -fPIC
865 libgobegin_llgo_a_CFLAGS = $(AM_CFLAGS) -fPIC
866
867 libgolibbegin_a_SOURCES = \
868         runtime/go-libmain.c
869
870 libgolibbegin_a_CFLAGS = $(AM_CFLAGS) -fPIC
871
872 # Make sure runtime.inc is built before compiling any .c file.
873 $(libgo_la_OBJECTS): runtime.inc
874 $(libgo_llgo_la_OBJECTS): runtime.inc
875 $(libgobegin_a_OBJECTS): runtime.inc
876 $(libgobegin_llgo_a_OBJECTS): runtime.inc
877 $(libgolibbegin_a_OBJECTS): runtime.inc
878
879 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
880
881 GOCFLAGS = $(CFLAGS)
882 AM_GOCFLAGS = $(STRINGOPS_FLAG) $(GO_SPLIT_STACK)
883 GOCOMPILE = $(GOC) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_GOCFLAGS) $(GOCFLAGS)
884
885 LTGOCOMPILE = $(LIBTOOL) --tag GO --mode=compile $(GOC) $(INCLUDES) \
886         $(AM_GOCFLAGS) $(GOCFLAGS)
887
888 GOLINK = $(LIBTOOL) --tag GO --mode-link $(GOC) \
889         $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_GOCFLAGS) $(LTLDFLAGS) -o $@
890
891 # Build the dependencies for a Go package.
892 BUILDDEPS = \
893         $(MKDIR_P) $(@D); \
894         dir=`echo $@ | sed -e 's/.lo.dep$$//'`; \
895         files=`$(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/$$dir --extrafiles="$(extra_go_files_$(subst /,_,$(subst .lo.dep,,$@)))" $(matchargs_$(subst /,_,$(subst .lo.dep,,$@)))`; \
896         $(SHELL) $(srcdir)/godeps.sh `echo $@ | sed -e 's/.dep$$//'` $$files > $@.tmp; \
897         if ! cmp $@.tmp $@ >/dev/null 2>/dev/null; then \
898           rm -f `echo $@ | sed -e 's/\.dep$$//'`; \
899         fi; \
900         mv -f $@.tmp $@
901
902 # Build the .go files for a package, generating a .lo file.
903 BUILDPACKAGE = \
904         $(MKDIR_P) $(@D); \
905         files=`echo $^ | sed -e 's/[^ ]*\.gox//g' -e 's/[^ ]*\.dep//'`; \
906         $(LTGOCOMPILE) -I . -c -fgo-pkgpath=`echo $@ | sed -e 's/.lo$$//'` $($(subst -,_,$(subst .,_,$(subst /,_,$@)))_GOCFLAGS) -o $@ $$files
907
908 # How to build a .gox file from a .lo file.
909 BUILDGOX = \
910         f=`echo $< | sed -e 's/.lo$$/.o/'`; \
911         $(OBJCOPY) -j .go_export $$f $@.tmp; \
912         $(SHELL) $(srcdir)/mvifdiff.sh $@.tmp `echo $@ | sed -e 's/s-gox/gox/'`
913
914 GOTESTFLAGS =
915 GOBENCH = 
916
917 # Check a package.
918 CHECK = \
919         GC="$(GOC) $(GOCFLAGS) $($(subst /,_,$@)_GOCFLAGS) -L `${PWD_COMMAND}` -L `${PWD_COMMAND}`/.libs"; \
920         export GC; \
921         GOLIBS="$(MATH_LIBS) $(NET_LIBS) $(LIBS)"; \
922         export GOLIBS; \
923         RUNTESTFLAGS="$(RUNTESTFLAGS)"; \
924         export RUNTESTFLAGS; \
925         MAKE="$(MAKE)"; \
926         export MAKE; \
927         libgccdir=`${GOC} -print-libgcc-file-name | sed -e 's|/[^/]*$$||'`; \
928         LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
929         LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
930         export LD_LIBRARY_PATH; \
931         $(MKDIR_P) $(@D); \
932         rm -f $@-testsum $@-testlog; \
933         files=`$(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/$(@D) --extrafiles="$(extra_go_files_$(subst /,_,$(@D)))" $(matchargs_$(subst /,_,$(@D)))`; \
934         if test "$(USE_DEJAGNU)" = "yes"; then \
935           $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" --testname="$(@D)" $(GOTESTFLAGS); \
936         elif test "$(GOBENCH)" != ""; then \
937           $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" --bench="$(GOBENCH)" $(GOTESTFLAGS); \
938         else \
939           if $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" $(GOTESTFLAGS) >>$@-testlog 2>&1; then \
940             echo "PASS: $(@D)" >> $@-testlog; \
941             echo "PASS: $(@D)"; \
942             echo "PASS: $(@D)" > $@-testsum; \
943           else \
944             echo "FAIL: $(@D)" >> $@-testlog; \
945             cat $@-testlog; \
946             echo "FAIL: $(@D)" > $@-testsum; \
947             exit 1; \
948           fi; \
949         fi
950
951 # Build all packages before checking any.
952 CHECK_DEPS = \
953         $(toolexeclibgo_DATA) \
954         $(toolexeclibgoarchive_DATA) \
955         $(toolexeclibgocompress_DATA) \
956         $(toolexeclibgocontainer_DATA) \
957         $(toolexeclibgocrypto_DATA) \
958         $(toolexeclibgodebug_DATA) \
959         $(toolexeclibgoencoding_DATA) \
960         $(toolexeclibgoexp_DATA) \
961         $(toolexeclibgogo_DATA) \
962         $(toolexeclibgohash_DATA) \
963         $(toolexeclibgoimage_DATA) \
964         $(toolexeclibgoindex_DATA) \
965         $(toolexeclibgoio_DATA) \
966         $(toolexeclibgolog_DATA) \
967         $(toolexeclibgomath_DATA) \
968         $(toolexeclibgomime_DATA) \
969         $(toolexeclibgonet_DATA) \
970         $(toolexeclibgonethttp_DATA) \
971         $(toolexeclibgoos_DATA) \
972         $(toolexeclibgopath_DATA) \
973         $(toolexeclibgorpc_DATA) \
974         $(toolexeclibgoruntime_DATA) \
975         $(toolexeclibgosync_DATA) \
976         $(toolexeclibgotesting_DATA) \
977         $(toolexeclibgotext_DATA) \
978         $(toolexeclibgotexttemplate_DATA) \
979         $(toolexeclibgounicode_DATA)
980
981 if GOC_IS_LLGO
982 CHECK_DEPS += libgo-llgo.la libgobegin-llgo.a
983 else
984 CHECK_DEPS += libgo.la libgobegin.a
985 endif
986
987 # PACKAGE_template defines the rules for each package.
988 # For example, for the package bufio, it produces:
989 #
990 # @go_include@ bufio.lo.dep
991 # bufio.lo.dep: $(srcdir)/go/bufio/*.go
992 #       $(BUILDDEPS)
993 # bufio.lo:
994 #       $(BUILDPACKAGE)
995 # bufio/check: $(CHECK_DEPS)
996 #       @$(CHECK)
997 # .PHONY: bufio/check
998 #
999 # This is invoked with $(1) set to a package, which is a directory name,
1000 # such as "bufio" or "archive/tar".
1001 define PACKAGE_template
1002 @go_include@ $(1).lo.dep
1003 $(1).lo.dep: $(srcdir)/go/$(1)/*.go
1004         $$(BUILDDEPS)
1005 $(1).lo:
1006         $$(BUILDPACKAGE)
1007 $(1)/check: $$(CHECK_DEPS)
1008         @$$(CHECK)
1009 .PHONY: $(1)/check
1010 $(1).gox: $(1).s-gox; @true
1011 $(1).s-gox: $(1).lo
1012         $$(BUILDGOX)
1013         $$(STAMP) $$@
1014 endef
1015
1016 # This line expands PACKAGE_template once for each package name listed
1017 # in $(PACKAGES).
1018 $(foreach package,$(PACKAGES),$(eval $(call PACKAGE_template,$(package))))
1019
1020 # Pass -ffp-contract=off, or 386-specific options, when building the
1021 # math package.  MATH_FLAG is defined in configure.ac.
1022 math_lo_GOCFLAGS = $(MATH_FLAG)
1023
1024 # Add the generated file runtime_sysinfo.go to the runtime package.
1025 extra_go_files_runtime = runtime_sysinfo.go sigtab.go
1026 runtime.lo.dep: $(extra_go_files_runtime)
1027
1028 # Add generated files to the syscall package.
1029 extra_go_files_syscall = \
1030         libcalls.go \
1031         sysinfo.go \
1032         syscall_arch.go \
1033         $(syscall_epoll_file)
1034 syscall.lo.dep: $(extra_go_files_syscall)
1035
1036 # Pass -fgo-compiling-runtime when compiling the runtime package.
1037 runtime_lo_GOCFLAGS = -fgo-c-header=runtime.inc.tmp -fgo-compiling-runtime
1038 runtime_check_GOCFLAGS = -fgo-compiling-runtime
1039 runtime_internal_atomic_lo_GOCFLAGS = -fgo-compiling-runtime
1040 runtime_internal_atomic_lo_check_GOCFLAGS = -fgo-compiling-runtime
1041 runtime_internal_sys_lo_GOCFLAGS = -fgo-compiling-runtime
1042 runtime_internal_sys_lo_check_GOCFLAGS = -fgo-compiling-runtime
1043
1044 # If libffi is supported (the normal case) use the ffi build tag for
1045 # the runtime package.
1046 if USE_LIBFFI
1047 matchargs_runtime = --tag=libffi
1048 else
1049 matchargs_runtime =
1050 endif
1051
1052 # At least for now, we need -static-libgo for this test, because
1053 # otherwise we can't get the line numbers.
1054 # Also use -fno-inline to get better results from the memory profiler.
1055 runtime_pprof_check_GOCFLAGS = -static-libgo -fno-inline
1056
1057 extra_go_files_runtime_internal_sys = version.go
1058 runtime/internal/sys.lo.dep: $(extra_go_files_runtime_internal_sys)
1059
1060 # FIXME: The following C files may as well move to the runtime
1061 # directory and be treated like other C files.
1062
1063 # Use C code to speed up {bytes,strings}.IndexByte and friends.
1064 bytes/index.lo: go/bytes/indexbyte.c runtime.inc
1065         @$(MKDIR_P) bytes
1066         $(LTCOMPILE) -c -o $@ $(srcdir)/go/bytes/indexbyte.c
1067 strings/index.lo: go/strings/indexbyte.c runtime.inc
1068         @$(MKDIR_P) strings
1069         $(LTCOMPILE) -c -o $@ $(srcdir)/go/strings/indexbyte.c
1070
1071 # Use a C function with a fixed number of arguments to call a C
1072 # varargs function.
1073 log/syslog/syslog_c.lo: go/log/syslog/syslog_c.c runtime.inc
1074         @$(MKDIR_P) log/syslog
1075         $(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
1076
1077 # The interface to libffi from the reflect package is written in C.
1078 reflect/makefunc_ffi_c.lo: go/reflect/makefunc_ffi_c.c runtime.inc
1079         @$(MKDIR_P) reflect
1080         $(LTCOMPILE) -c -o $@ $(srcdir)/go/reflect/makefunc_ffi_c.c
1081
1082 # The atomic functions are written in C.
1083 runtime/internal/atomic_c.lo: go/runtime/internal/atomic/atomic.c runtime.inc
1084         @$(MKDIR_P) runtime/internal
1085         $(LTCOMPILE) -c -o $@ $(srcdir)/go/runtime/internal/atomic/atomic.c
1086 sync/atomic_c.lo: go/sync/atomic/atomic.c runtime.inc
1087         @$(MKDIR_P) sync
1088         $(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
1089
1090 # A few syscall functions are written in C.
1091 syscall/clone_linux.lo: go/syscall/clone_linux.c runtime.inc
1092         @$(MKDIR_P) syscall
1093         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/clone_linux.c
1094 syscall/errno.lo: go/syscall/errno.c runtime.inc
1095         @$(MKDIR_P) syscall
1096         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/errno.c
1097 syscall/signame.lo: go/syscall/signame.c runtime.inc
1098         @$(MKDIR_P) syscall
1099         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/signame.c
1100 syscall/wait.lo: go/syscall/wait.c runtime.inc
1101         @$(MKDIR_P) syscall
1102         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/wait.c
1103
1104 # Solaris 12 changed the type of fields in struct stat.
1105 # Use a build tag, based on a configure check, to cope.
1106 if LIBGO_IS_SOLARIS
1107 if HAVE_STAT_TIMESPEC
1108 matchargs_os = --tag=solaristag
1109 else
1110 matchargs_os =
1111 endif
1112 else
1113 matchargs_os =
1114 endif
1115
1116 if LIBGO_IS_BSD
1117
1118 # Build golang_org/x/net/route only on BSD systems.
1119
1120 $(eval $(call PACKAGE_template,golang_org/x/net/route)
1121
1122 golang_org_x_net_route_lo = \
1123         golang_org/x/net/route/route.lo
1124 golang_org_x_net_route_check = \
1125         golang_org/x/net/route/check
1126
1127 endif
1128
1129 TEST_PACKAGES = \
1130         bufio/check \
1131         bytes/check \
1132         context/check \
1133         errors/check \
1134         expvar/check \
1135         flag/check \
1136         fmt/check \
1137         html/check \
1138         image/check \
1139         io/check \
1140         log/check \
1141         math/check \
1142         mime/check \
1143         net/check \
1144         os/check \
1145         path/check \
1146         reflect/check \
1147         regexp/check \
1148         runtime/check \
1149         sort/check \
1150         strconv/check \
1151         strings/check \
1152         sync/check \
1153         syscall/check \
1154         time/check \
1155         unicode/check \
1156         archive/tar/check \
1157         archive/zip/check \
1158         compress/bzip2/check \
1159         compress/flate/check \
1160         compress/gzip/check \
1161         compress/lzw/check \
1162         compress/zlib/check \
1163         container/heap/check \
1164         container/list/check \
1165         container/ring/check \
1166         crypto/aes/check \
1167         crypto/cipher/check \
1168         crypto/des/check \
1169         crypto/dsa/check \
1170         crypto/ecdsa/check \
1171         crypto/elliptic/check \
1172         crypto/hmac/check \
1173         crypto/md5/check \
1174         crypto/rand/check \
1175         crypto/rc4/check \
1176         crypto/rsa/check \
1177         crypto/sha1/check \
1178         crypto/sha256/check \
1179         crypto/sha512/check \
1180         crypto/subtle/check \
1181         crypto/tls/check \
1182         crypto/x509/check \
1183         database/sql/check \
1184         database/sql/driver/check \
1185         debug/dwarf/check \
1186         debug/elf/check \
1187         debug/macho/check \
1188         debug/pe/check \
1189         debug/plan9obj/check \
1190         encoding/ascii85/check \
1191         encoding/asn1/check \
1192         encoding/base32/check \
1193         encoding/base64/check \
1194         encoding/binary/check \
1195         encoding/csv/check \
1196         encoding/gob/check \
1197         encoding/hex/check \
1198         encoding/json/check \
1199         encoding/pem/check \
1200         encoding/xml/check \
1201         exp/proxy/check \
1202         exp/terminal/check \
1203         html/template/check \
1204         go/ast/check \
1205         go/build/check \
1206         go/constant/check \
1207         go/doc/check \
1208         go/format/check \
1209         go/internal/gcimporter/check \
1210         go/internal/gccgoimporter/check \
1211         go/parser/check \
1212         go/printer/check \
1213         go/scanner/check \
1214         go/token/check \
1215         go/types/check \
1216         golang_org/x/net/http2/hpack/check \
1217         golang_org/x/net/lex/httplex/check \
1218         $(golang_org_x_net_route_check) \
1219         hash/adler32/check \
1220         hash/crc32/check \
1221         hash/crc64/check \
1222         hash/fnv/check \
1223         image/color/check \
1224         image/draw/check \
1225         image/jpeg/check \
1226         image/png/check \
1227         index/suffixarray/check \
1228         internal/singleflight/check \
1229         internal/trace/check \
1230         io/ioutil/check \
1231         log/syslog/check \
1232         math/big/check \
1233         math/cmplx/check \
1234         math/rand/check \
1235         mime/multipart/check \
1236         mime/quotedprintable/check \
1237         net/http/check \
1238         net/http/cgi/check \
1239         net/http/cookiejar/check \
1240         net/http/fcgi/check \
1241         net/http/httptest/check \
1242         net/http/httptrace/check \
1243         net/http/httputil/check \
1244         net/http/internal/check \
1245         net/internal/socktest/check \
1246         net/mail/check \
1247         net/rpc/check \
1248         net/smtp/check \
1249         net/textproto/check \
1250         net/url/check \
1251         net/rpc/jsonrpc/check \
1252         os/exec/check \
1253         os/signal/check \
1254         os/user/check \
1255         path/filepath/check \
1256         regexp/syntax/check \
1257         runtime/debug/check \
1258         runtime/pprof/check \
1259         runtime/internal/atomic/check \
1260         runtime/internal/sys/check \
1261         sync/atomic/check \
1262         text/scanner/check \
1263         text/tabwriter/check \
1264         text/template/check \
1265         text/template/parse/check \
1266         testing/quick/check \
1267         unicode/utf16/check \
1268         unicode/utf8/check
1269
1270 check: check-tail
1271 check-recursive: check-head
1272
1273 check-head:
1274         @echo "Test Run By $${USER} on `date`" > libgo.head
1275         @echo "Native configuration is $(host_triplet)" >> libgo.head
1276         @echo >> libgo.head
1277         @echo "         === libgo tests ===" >> libgo.head
1278         @echo >> libgo.head
1279
1280 check-tail: check-recursive check-multi
1281         @if test "$(USE_DEJAGNU)" = "yes"; then \
1282           exit 0; \
1283         fi; \
1284         lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
1285         for dir in . $(MULTIDIRS); do \
1286           mv ../$${dir}/$${lib}/libgo.sum ../$${dir}/$${lib}/libgo.sum.sep; \
1287           mv ../$${dir}/$${lib}/libgo.log ../$${dir}/$${lib}/libgo.log.sep; \
1288         done; \
1289         mv libgo.head libgo.sum; \
1290         cp libgo.sum libgo.log; \
1291         echo "Schedule of variations:" >> libgo.sum; \
1292         for dir in . $(MULTIDIRS); do \
1293           multidir=../$${dir}/$${lib}; \
1294           multivar=`cat $${multidir}/libgo.var`; \
1295           echo "    $${multivar}" >> libgo.sum; \
1296         done; \
1297         echo >> libgo.sum; \
1298         pass=0; fail=0; untested=0; \
1299         for dir in . $(MULTIDIRS); do \
1300           multidir=../$${dir}/$${lib}; \
1301           multivar=`cat $${multidir}/libgo.var`; \
1302           echo "Running target $${multivar}" >> libgo.sum; \
1303           echo "Running $(srcdir)/libgo.exp ..." >> libgo.sum; \
1304           cat $${multidir}/libgo.sum.sep >> libgo.sum; \
1305           cat $${multidir}/libgo.log.sep >> libgo.log; \
1306           if test -n "${MULTIDIRS}"; then \
1307             echo "              === libgo Summary for $${multivar} ===" >> libgo.sum; \
1308             echo >> libgo.sum; \
1309           fi; \
1310           p=`grep -c PASS $${multidir}/libgo.sum.sep`; \
1311           pass=`expr $$pass + $$p`; \
1312           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1313             echo "# of expected passes          $$p" >> libgo.sum; \
1314           fi; \
1315           p=`grep -c FAIL $${multidir}/libgo.sum.sep`; \
1316           fail=`expr $$fail + $$p`; \
1317           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1318             echo "# of unexpected failures      $$p" >> libgo.sum; \
1319           fi; \
1320           p=`grep -c UNTESTED $${multidir}/libgo.sum.sep`; \
1321           untested=`expr $$untested + $$p`; \
1322           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1323             echo "# of untested testcases               $$p" >> libgo.sum; \
1324           fi; \
1325         done; \
1326         echo >> libgo.sum; \
1327         echo "          === libgo Summary ===" >> libgo.sum; \
1328         echo >> libgo.sum; \
1329         if test "$$pass" -ne "0"; then \
1330           echo "# of expected passes            $$pass" >> libgo.sum; \
1331         fi; \
1332         if test "$$fail" -ne "0"; then \
1333           echo "# of unexpected failures        $$fail" >> libgo.sum; \
1334         fi; \
1335         if test "$$untested" -ne "0"; then \
1336           echo "# of untested testcases         $$untested" >> libgo.sum; \
1337         fi; \
1338         echo `echo $(GOC) | sed -e 's/ .*//'`  `$(GOC) -v 2>&1 | grep " version" | sed -n -e 's/.* \(version.*$$\)/\1/p'` >> libgo.sum; \
1339         echo >> libgo.log; \
1340         echo "runtest completed at `date`" >> libgo.log; \
1341         if test "$$fail" -ne "0"; then \
1342           status=1; \
1343         else \
1344           status=0; \
1345         fi; \
1346         exit $$status
1347
1348 check-am:
1349         @rm -f libgo.sum libgo.log libgo.tail
1350         @multivar="unix"; \
1351         [ -z "$(MULTIFLAGS)" ] || multivar="$${multivar}/$(MULTIFLAGS)"; \
1352         echo "$${multivar}" > libgo.var
1353         @for f in $(TEST_PACKAGES); do \
1354            rm -f $$f-testsum $$f-testlog; \
1355          done
1356         -@$(MAKE) -k $(TEST_PACKAGES)
1357         @for f in $(TEST_PACKAGES); do \
1358           if test -f $$f-testsum; then \
1359             cat $$f-testsum >> libgo.sum; \
1360           fi; \
1361           if test -f $$f-testlog; then \
1362             cat $$f-testlog >> libgo.log; \
1363           fi; \
1364         done
1365
1366 check-multi:
1367         $(MULTIDO) $(AM_MAKEFLAGS) DO=check-am multi-do # $(MAKE)
1368
1369 bench:
1370         -@$(MAKE) -k $(TEST_PACKAGES) GOBENCH=.
1371
1372 MOSTLYCLEAN_FILES = libgo.head libgo.sum.sep libgo.log.sep
1373
1374 mostlyclean-local:
1375         find . -name '*.lo' -print | xargs $(LIBTOOL) --mode=clean rm -f
1376         find . -name '*.$(OBJEXT)' -print | xargs rm -f
1377         find . -name '*-testsum' -print | xargs rm -f
1378         find . -name '*-testlog' -print | xargs rm -f
1379
1380 CLEANFILES = *.go *.gox goc2c *.c s-version libgo.sum libgo.log
1381
1382 clean-local:
1383         find . -name '*.la' -print | xargs $(LIBTOOL) --mode=clean rm -f
1384         find . -name '*.a' -print | xargs rm -f