associate_48.f90: Fix a dg directive.
[official-gcc.git] / libgo / Makefile.am
blob1192b4497819c6b814922741132c921cf5a330ab
1 # Makefile.am -- Go library Makefile.
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.
7 # Process this file with autoreconf to produce Makefile.in.
9 # Go support.
10 SUFFIXES = .c .go .gox .o .obj .lo .a
12 if LIBGO_IS_RTEMS
13 subdirs = testsuite
14 endif
16 if LIBGO_IS_DARWIN
17 GO_EXPORT_SECTION_NAME = __GNU_GO.__go_export
18 else
19 GO_EXPORT_SECTION_NAME = .go_export
20 endif
22 SUBDIRS = ${subdirs}
24 gcc_version := $(shell $(GOC) -dumpversion)
26 MAINT_CHARSET = latin1
28 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
29 PWD_COMMAND = $${PWDCMD-pwd}
30 STAMP = echo timestamp >
32 toolexecdir = $(glibgo_toolexecdir)
33 toolexeclibdir = $(glibgo_toolexeclibdir)
34 toolexeclibgodir = $(nover_glibgo_toolexeclibdir)/go/$(gcc_version)/$(target_alias)
35 libexecsubdir = $(libexecdir)/gcc/$(target_alias)/$(gcc_version)
37 LIBFFI = @LIBFFI@
38 LIBFFIINCS = @LIBFFIINCS@
40 LIBATOMIC = @LIBATOMIC@
42 WARN_CFLAGS = $(WARN_FLAGS) $(WERROR)
44 # -I/-D flags to pass when compiling.
45 AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS)
47 ACLOCAL_AMFLAGS = -I ./config -I ../config
49 AM_CFLAGS = -fexceptions -fnon-call-exceptions \
50         $(SPLIT_STACK) $(WARN_CFLAGS) \
51         $(STRINGOPS_FLAG) $(HWCAP_CFLAGS) $(OSCFLAGS) \
52         -I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \
53         -I $(MULTIBUILDTOP)../../gcc/include
55 AM_LDFLAGS =
57 if USING_SPLIT_STACK
58 AM_LDFLAGS += -XCClinker $(SPLIT_STACK)
59 endif
61 if LIBGO_IS_AIX
62 # Using an import file for libgo avoid requiring to use the -brtl flag
63 # when builing a go program
64 AM_LDFLAGS += -Wl,-bbigtoc -Wl,-bI:$(srcdir)/libgo.imp
65 EXTRA_libgo_la_DEPENDENCIES = libgo.imp
66 endif
68 # Multilib support.
69 MAKEOVERRIDES=
71 # Work around what appears to be a GNU make  handling MAKEFLAGS
72 # values defined in terms of make variables, as is the case for CC and
73 # friends when we are called from the top level Makefile.
74 AM_MAKEFLAGS = \
75         "AR_FLAGS=$(AR_FLAGS)" \
76         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
77         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
78         "CFLAGS=$(CFLAGS)" \
79         "CXXFLAGS=$(CXXFLAGS)" \
80         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
81         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
82         "GOC_FOR_TARGET=$(GOC_FOR_TARGET)" \
83         "GOC=$(GOC)" \
84         "GOCFLAGS=$(GOCFLAGS)" \
85         "INSTALL=$(INSTALL)" \
86         "INSTALL_DATA=$(INSTALL_DATA)" \
87         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
88         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
89         "LDFLAGS=$(LDFLAGS)" \
90         "LIBCFLAGS=$(LIBCFLAGS)" \
91         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
92         "MAKE=$(MAKE)" \
93         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
94         "PICFLAG=$(PICFLAG)" \
95         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
96         "SHELL=$(SHELL)" \
97         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
98         "exec_prefix=$(exec_prefix)" \
99         "infodir=$(infodir)" \
100         "libdir=$(libdir)" \
101         "includedir=$(includedir)" \
102         "prefix=$(prefix)" \
103         "tooldir=$(tooldir)" \
104         "gxx_include_dir=$(gxx_include_dir)" \
105         "AR=$(AR)" \
106         "AS=$(AS)" \
107         "LD=$(LD)" \
108         "RANLIB=$(RANLIB)" \
109         "NM=$(NM)" \
110         "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
111         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
112         "DESTDIR=$(DESTDIR)" \
113         "WERROR=$(WERROR)"
115 # Subdir rules rely on $(FLAGS_TO_PASS)
116 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
118 if GOC_IS_LLGO
119 toolexeclib_LTLIBRARIES = libgo-llgo.la
120 toolexeclib_LIBRARIES = libgobegin-llgo.a
121 else
122 toolexeclib_LTLIBRARIES = libgo.la
123 toolexeclib_LIBRARIES = libgobegin.a libgolibbegin.a
124 endif
126 noinst_LIBRARIES = libgotool.a
128 toolexeclibgo_DATA = \
129         bufio.gox \
130         bytes.gox \
131         context.gox \
132         crypto.gox \
133         encoding.gox \
134         errors.gox \
135         expvar.gox \
136         flag.gox \
137         fmt.gox \
138         hash.gox \
139         html.gox \
140         image.gox \
141         io.gox \
142         log.gox \
143         math.gox \
144         mime.gox \
145         net.gox \
146         os.gox \
147         path.gox \
148         reflect.gox \
149         regexp.gox \
150         runtime.gox \
151         sort.gox \
152         strconv.gox \
153         strings.gox \
154         sync.gox \
155         syscall.gox \
156         testing.gox \
157         time.gox \
158         unicode.gox
160 toolexeclibgoarchivedir = $(toolexeclibgodir)/archive
162 toolexeclibgoarchive_DATA = \
163         archive/tar.gox \
164         archive/zip.gox
166 toolexeclibgocompressdir = $(toolexeclibgodir)/compress
168 toolexeclibgocompress_DATA = \
169         compress/bzip2.gox \
170         compress/flate.gox \
171         compress/gzip.gox \
172         compress/lzw.gox \
173         compress/zlib.gox
175 toolexeclibgocontainerdir = $(toolexeclibgodir)/container
177 toolexeclibgocontainer_DATA = \
178         container/heap.gox \
179         container/list.gox \
180         container/ring.gox
182 toolexeclibgocryptodir = $(toolexeclibgodir)/crypto
184 toolexeclibgocrypto_DATA = \
185         crypto/aes.gox \
186         crypto/cipher.gox \
187         crypto/des.gox \
188         crypto/dsa.gox \
189         crypto/ecdsa.gox \
190         crypto/ed25519.gox \
191         crypto/elliptic.gox \
192         crypto/hmac.gox \
193         crypto/md5.gox \
194         crypto/rand.gox \
195         crypto/rc4.gox \
196         crypto/rsa.gox \
197         crypto/sha1.gox \
198         crypto/sha256.gox \
199         crypto/sha512.gox \
200         crypto/subtle.gox \
201         crypto/tls.gox \
202         crypto/x509.gox
204 toolexeclibgocryptox509dir = $(toolexeclibgocryptodir)/x509
206 toolexeclibgocryptox509_DATA = \
207         crypto/x509/pkix.gox
209 toolexeclibgodatabasedir = $(toolexeclibgodir)/database
211 toolexeclibgodatabase_DATA = \
212         database/sql.gox
214 toolexeclibgodatabasesqldir = $(toolexeclibgodatabasedir)/sql
216 toolexeclibgodatabasesql_DATA = \
217         database/sql/driver.gox
219 toolexeclibgodebugdir = $(toolexeclibgodir)/debug
221 toolexeclibgodebug_DATA = \
222         debug/dwarf.gox \
223         debug/elf.gox \
224         debug/gosym.gox \
225         debug/macho.gox \
226         debug/pe.gox \
227         debug/plan9obj.gox
229 toolexeclibgoencodingdir = $(toolexeclibgodir)/encoding
231 toolexeclibgoencoding_DATA = \
232         encoding/ascii85.gox \
233         encoding/asn1.gox \
234         encoding/base32.gox \
235         encoding/base64.gox \
236         encoding/binary.gox \
237         encoding/csv.gox \
238         encoding/gob.gox \
239         encoding/hex.gox \
240         encoding/json.gox \
241         encoding/pem.gox \
242         encoding/xml.gox
244 toolexeclibgogodir = $(toolexeclibgodir)/go
246 toolexeclibgogo_DATA = \
247         go/ast.gox \
248         go/build.gox \
249         go/constant.gox \
250         go/doc.gox \
251         go/format.gox \
252         go/importer.gox \
253         go/parser.gox \
254         go/printer.gox \
255         go/scanner.gox \
256         go/token.gox \
257         go/types.gox
259 toolexeclibgohashdir = $(toolexeclibgodir)/hash
261 toolexeclibgohash_DATA = \
262         hash/adler32.gox \
263         hash/crc32.gox \
264         hash/crc64.gox \
265         hash/fnv.gox
267 toolexeclibgohtmldir = $(toolexeclibgodir)/html
269 toolexeclibgohtml_DATA = \
270         html/template.gox
272 toolexeclibgoimagedir = $(toolexeclibgodir)/image
274 toolexeclibgoimage_DATA = \
275         image/color.gox \
276         image/draw.gox \
277         image/gif.gox \
278         image/jpeg.gox \
279         image/png.gox
281 toolexeclibgoimagecolordir = $(toolexeclibgoimagedir)/color
283 toolexeclibgoimagecolor_DATA = \
284         image/color/palette.gox
286 toolexeclibgoindexdir = $(toolexeclibgodir)/index
288 toolexeclibgoindex_DATA = \
289         index/suffixarray.gox
291 toolexeclibgoiodir = $(toolexeclibgodir)/io
293 toolexeclibgoio_DATA = \
294         io/ioutil.gox
296 toolexeclibgologdir = $(toolexeclibgodir)/log
298 toolexeclibgolog_DATA = \
299         log/syslog.gox
301 toolexeclibgomathdir = $(toolexeclibgodir)/math
303 toolexeclibgomath_DATA = \
304         math/big.gox \
305         math/bits.gox \
306         math/cmplx.gox \
307         math/rand.gox
309 toolexeclibgomimedir = $(toolexeclibgodir)/mime
311 toolexeclibgomime_DATA = \
312         mime/multipart.gox \
313         mime/quotedprintable.gox
315 toolexeclibgonetdir = $(toolexeclibgodir)/net
317 toolexeclibgonet_DATA = \
318         net/http.gox \
319         net/mail.gox \
320         net/rpc.gox \
321         net/smtp.gox \
322         net/textproto.gox \
323         net/url.gox
325 toolexeclibgonethttpdir = $(toolexeclibgonetdir)/http
327 toolexeclibgonethttp_DATA = \
328         net/http/cgi.gox \
329         net/http/cookiejar.gox \
330         net/http/fcgi.gox \
331         net/http/httptest.gox \
332         net/http/httptrace.gox \
333         net/http/httputil.gox \
334         net/http/pprof.gox
336 toolexeclibgonetrpcdir = $(toolexeclibgonetdir)/rpc
338 toolexeclibgonetrpc_DATA = \
339         net/rpc/jsonrpc.gox
341 toolexeclibgoosdir = $(toolexeclibgodir)/os
343 toolexeclibgoos_DATA = \
344         os/exec.gox \
345         os/signal.gox \
346         os/user.gox
348 toolexeclibgopathdir = $(toolexeclibgodir)/path
350 toolexeclibgopath_DATA = \
351         path/filepath.gox
353 toolexeclibgoregexpdir = $(toolexeclibgodir)/regexp
355 toolexeclibgoregexp_DATA = \
356         regexp/syntax.gox
358 toolexeclibgoruntimedir = $(toolexeclibgodir)/runtime
360 toolexeclibgoruntime_DATA = \
361         runtime/debug.gox \
362         runtime/pprof.gox \
363         runtime/trace.gox
365 toolexeclibgosyncdir = $(toolexeclibgodir)/sync
367 toolexeclibgosync_DATA = \
368         sync/atomic.gox
370 toolexeclibgotestingdir = $(toolexeclibgodir)/testing
372 toolexeclibgotesting_DATA = \
373         testing/iotest.gox \
374         testing/quick.gox
376 toolexeclibgotestinginternaldir = $(toolexeclibgotestingdir)/internal
378 toolexeclibgotestinginternal_DATA = \
379         testing/internal/testdeps.gox
381 toolexeclibgotextdir = $(toolexeclibgodir)/text
383 toolexeclibgotext_DATA = \
384         text/scanner.gox \
385         text/tabwriter.gox \
386         text/template.gox
388 toolexeclibgotexttemplatedir = $(toolexeclibgotextdir)/template
390 toolexeclibgotexttemplate_DATA = \
391         text/template/parse.gox
393 toolexeclibgounicodedir = $(toolexeclibgodir)/unicode
395 toolexeclibgounicode_DATA = \
396         unicode/utf16.gox \
397         unicode/utf8.gox
399 # Some packages are only needed for tests, so unlike the other
400 # internal packages nothing will explicitly depend on them.
401 # Force them to be built.
402 noinst_DATA = \
403         golang.org/x/net/nettest.gox \
404         internal/cfg.gox \
405         internal/testenv.gox \
406         internal/trace.gox \
407         net/internal/socktest.gox \
408         os/signal/internal/pty.gox \
409         runtime/pprof/internal/profile.gox
411 if LIBGO_IS_RTEMS
412 rtems_task_variable_add_file = runtime/rtems-task-variable-add.c
413 else
414 rtems_task_variable_add_file =
415 endif
417 runtime_files = \
418         runtime/aeshash.c \
419         runtime/go-assert.c \
420         runtime/go-caller.c \
421         runtime/go-callers.c \
422         runtime/go-cdiv.c \
423         runtime/go-cgo.c \
424         runtime/go-construct-map.c \
425         runtime/go-ffi.c \
426         runtime/go-fieldtrack.c \
427         runtime/go-matherr.c \
428         runtime/go-memclr.c \
429         runtime/go-memequal.c \
430         runtime/go-nanotime.c \
431         runtime/go-now.c \
432         runtime/go-nosys.c \
433         runtime/go-reflect-call.c \
434         runtime/go-runtime-error.c \
435         runtime/go-setenv.c \
436         runtime/go-signal.c \
437         runtime/go-unsafe-pointer.c \
438         runtime/go-unsetenv.c \
439         runtime/go-unwind.c \
440         runtime/go-varargs.c \
441         runtime/env_posix.c \
442         runtime/panic.c \
443         runtime/print.c \
444         runtime/proc.c \
445         runtime/runtime_c.c \
446         runtime/stack.c \
447         runtime/yield.c \
448         runtime/go-context.S \
449         $(rtems_task_variable_add_file)
451 version.go: s-version; @true
452 s-version: Makefile
453         rm -f version.go.tmp
454         echo "package sys" > version.go.tmp
455         echo 'func init() { DefaultGoroot = "$(prefix)" }' >> version.go.tmp
456         echo 'const TheVersion = "'`cat $(srcdir)/VERSION | sed 1q`' '`$(GOC) --version | sed 1q`'"' >> version.go.tmp
457         echo 'const Goexperiment = ``' >> version.go.tmp
458         echo 'const GOARCH = "'$(GOARCH)'"' >> version.go.tmp
459         echo 'const GOOS = "'$(GOOS)'"' >> version.go.tmp
460         echo 'const GccgoToolDir = "$(libexecsubdir)"' >> version.go.tmp
461         echo >> version.go.tmp
462         echo "type ArchFamilyType int" >> version.go.tmp
463         echo >> version.go.tmp
464         echo "const (" >> version.go.tmp
465         echo "  UNKNOWN ArchFamilyType = iota" >> version.go.tmp
466         for a in $(ALLGOARCHFAMILY); do \
467           echo "        $${a}" >> version.go.tmp; \
468         done
469         echo ")" >> version.go.tmp
470         echo >> version.go.tmp
471         for a in $(ALLGOARCH); do \
472           f=`echo $${a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`; \
473           n="$${f}`echo $${a} | sed -e 's/.//'`"; \
474           if test "$${a}" = "$(GOARCH)"; then \
475             echo "const Goarch$${n} = 1" >> version.go.tmp; \
476           else \
477             echo "const Goarch$${n} = 0" >> version.go.tmp; \
478           fi; \
479         done
480         echo >> version.go.tmp
481         echo "const (" >> version.go.tmp
482         echo "  ArchFamily = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) family`" >> version.go.tmp
483         echo "  BigEndian = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) bigendian`" >> version.go.tmp
484         echo "  CacheLineSize = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) cachelinesize`" >> version.go.tmp
485         echo "  DefaultPhysPageSize = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) defaultphyspagesize`" >> version.go.tmp
486         echo "  Int64Align = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) int64align`" >> version.go.tmp
487         echo "  MinFrameSize = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) minframesize`" >> version.go.tmp
488         echo "  PCQuantum = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) pcquantum`" >> version.go.tmp
489         echo ")" >> version.go.tmp
490         echo >> version.go.tmp
491         for a in $(ALLGOOS); do \
492           f=`echo $${a} | sed -e 's/\(.\).*/\1/' -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`; \
493           n="$${f}`echo $${a} | sed -e 's/.//'`"; \
494           if test "$${a}" = "$(GOOS)"; then \
495             echo "const Goos$${n} = 1" >> version.go.tmp; \
496           else \
497             echo "const Goos$${n} = 0" >> version.go.tmp; \
498           fi; \
499         done
500         echo >> version.go.tmp
501         echo "type Uintreg uintptr" >> version.go.tmp
502         $(SHELL) $(srcdir)/mvifdiff.sh version.go.tmp version.go
503         $(STAMP) $@
505 cpugen.go: s-cpu; @true
506 s-cpu: Makefile
507         rm -f cpugen.go.tmp
508         echo "package cpu" > cpugen.go.tmp
509         echo "const CacheLinePadSize = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) cachelinesize`" >> cpugen.go.tmp
510         echo "const FunctionDescriptors = $(FUNCTION_DESCRIPTORS)" >> cpugen.go.tmp
511         $(SHELL) $(srcdir)/mvifdiff.sh cpugen.go.tmp cpugen.go
512         $(STAMP) $@
514 gcpugen.go: s-gcpu; @true
515 s-gcpu: Makefile
516         rm -f gcpugen.go.tmp
517         echo "package cpu" > gcpugen.go.tmp
518         echo "const cacheLineSize = `$(SHELL) $(srcdir)/goarch.sh $(GOARCH) cachelinesize`" >> gcpugen.go.tmp
519         $(SHELL) $(srcdir)/mvifdiff.sh gcpugen.go.tmp gcpugen.go
520         $(STAMP) $@
522 objabi.go: s-objabi; @true
523 s-objabi: Makefile
524         rm -f objabi.go.tmp
525         echo "package objabi" > objabi.go.tmp
526         echo "import \"runtime\"" >> objabi.go.tmp
527         echo 'func defaultGOROOTValue() string { return `$(prefix)` }' >> objabi.go.tmp
528         echo 'const defaultGO386 = `sse2`' >> objabi.go.tmp
529         echo 'const defaultGOARM = `5`' >> objabi.go.tmp
530         echo 'const defaultGOMIPS = `hardfloat`' >> objabi.go.tmp
531         echo 'const defaultGOMIPS64 = `hardfloat`' >> objabi.go.tmp
532         echo 'const defaultGOPPC64 = `power8`' >> objabi.go.tmp
533         echo 'const defaultGOOS = runtime.GOOS' >> objabi.go.tmp
534         echo 'const defaultGOARCH = runtime.GOARCH' >> objabi.go.tmp
535         echo 'const defaultGO_EXTLINK_ENABLED = ``' >> objabi.go.tmp
536         echo 'const defaultGO_LDSO = ``' >> objabi.go.tmp
537         echo 'const version = `'`cat $(srcdir)/VERSION | sed 1q`' '`$(GOC) --version | sed 1q`'`' >> objabi.go.tmp
538         echo 'const stackGuardMultiplierDefault = 1' >> objabi.go.tmp
539         echo 'const goexperiment = ``' >> objabi.go.tmp
540         $(SHELL) $(srcdir)/mvifdiff.sh objabi.go.tmp objabi.go
541         $(STAMP) $@
543 gccgosizes.go: s-gccgosizes; @true
544 s-gccgosizes: Makefile goarch.sh
545         rm -f gccgosizes.go.tmp
546         echo "package types" > gccgosizes.go.tmp
547         echo >> gccgosizes.go.tmp
548         echo "var gccgoArchSizes = map[string]*StdSizes{" >> gccgosizes.go.tmp
549         for a in $(ALLGOARCH); do \
550           ptrsize=`$(SHELL) $(srcdir)/goarch.sh $$a ptrsize`; \
551           maxalign=`$(SHELL) $(srcdir)/goarch.sh $$a maxalign`; \
552           echo "        \"$$a\": {$${ptrsize}, $${maxalign}}," >> gccgosizes.go.tmp; \
553         done
554         echo "}" >> gccgosizes.go.tmp
555         $(SHELL) $(srcdir)/mvifdiff.sh gccgosizes.go.tmp gccgosizes.go
556         $(STAMP) $@
558 runtime_sysinfo.go: s-runtime_sysinfo; @true
559 s-runtime_sysinfo: $(srcdir)/mkrsysinfo.sh gen-sysinfo.go
560         GOARCH=$(GOARCH) GOOS=$(GOOS) $(SHELL) $(srcdir)/mkrsysinfo.sh
561         $(SHELL) $(srcdir)/mvifdiff.sh tmp-runtime_sysinfo.go runtime_sysinfo.go
562         $(STAMP) $@
564 sigtab.go: s-sigtab; @true
565 s-sigtab: $(srcdir)/mksigtab.sh gen-sysinfo.go
566         GOOS=$(GOOS) $(SHELL) $(srcdir)/mksigtab.sh > tmp-sigtab.go
567         $(SHELL) $(srcdir)/mvifdiff.sh tmp-sigtab.go sigtab.go
568         $(STAMP) $@
570 GCCGO_INSTALL_NAME := $(shell echo gccgo|sed '$(program_transform_name)')
571 GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
572 GXX_INSTALL_NAME := $(shell echo g++|sed '$(program_transform_name)')
574 zdefaultcc.go: s-zdefaultcc; @true
575 s-zdefaultcc: Makefile
576         echo 'package cfg' > zdefaultcc.go.tmp
577         echo >> zdefaultcc.go.tmp
578         echo 'func DefaultGCCGO(goos, goarch string) string { return "$(bindir)/$(GCCGO_INSTALL_NAME)" }' >> zdefaultcc.go.tmp
579         echo 'func DefaultCC(goos, goarch string) string { return "$(GCC_INSTALL_NAME)" }' >> zdefaultcc.go.tmp
580         echo 'func DefaultCXX(goos, goarch string) string { return "$(GXX_INSTALL_NAME)" }' >> zdefaultcc.go.tmp
581         echo 'const DefaultPkgConfig = "pkg-config"' >> zdefaultcc.go.tmp
582         echo 'var OSArchSupportsCgo = map[string]bool{}' >> zdefaultcc.go.tmp
583         $(SHELL) $(srcdir)/../move-if-change zdefaultcc.go.tmp zdefaultcc.go
584         $(STAMP) $@ 
586 # Post-process runtime.inc.raw (raw output of -fgo-c-header option when
587 # compiling runtime) to prune out certain types that should not be
588 # exported back to C. See comments in mkruntimeinc.sh for more details.
589 runtime.inc: s-runtime-inc; @true
590 s-runtime-inc: runtime.lo mkruntimeinc.sh Makefile
591         $(SHELL) $(srcdir)/mkruntimeinc.sh
592         $(SHELL) $(srcdir)/mvifdiff.sh tmp-runtime.inc runtime.inc
593         $(STAMP) $@
595 noinst_DATA += zdefaultcc.go
597 # Generate the list of go std packages that were included in libgo
598 zstdpkglist.go: s-zstdpkglist; @true
599 s-zstdpkglist: Makefile
600         rm -f zstdpkglist.go.tmp
601         echo 'package goroot' > zstdpkglist.go.tmp
602         echo "" >> zstdpkglist.go.tmp
603         echo 'var stdpkg = map[string]bool{' >> zstdpkglist.go.tmp
604         echo $(libgo_go_objs) 'unsafe.lo' 'runtime/cgo.lo' | sed 's|[a-z0-9_./]*_c\.lo||g' | sed 's|\([a-z0-9_./]*\)\.lo|"\1": true,|g' >> zstdpkglist.go.tmp
605         echo '}' >> zstdpkglist.go.tmp
606         $(SHELL) $(srcdir)/mvifdiff.sh zstdpkglist.go.tmp zstdpkglist.go
607         $(STAMP) $@
609 if LIBGO_IS_LINUX
610 syscall_epoll_file = epoll.go
611 else
612 syscall_epoll_file =
613 endif
615 libcalls.go: s-libcalls; @true
616 s-libcalls: libcalls-list go/syscall/mksyscall.awk $(srcdir)/go/syscall/*.go
617         rm -f libcalls.go.tmp
618         $(AWK) -f $(srcdir)/go/syscall/mksyscall.awk `cat libcalls-list` > libcalls.go.tmp
619         $(SHELL) $(srcdir)/mvifdiff.sh libcalls.go.tmp libcalls.go
620         $(STAMP) $@
622 libcalls-list: s-libcalls-list; @true
623 s-libcalls-list: Makefile $(srcdir)/go/syscall/*.go
624         rm -f libcalls-list.tmp
625         $(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/syscall $(matchargs_syscall) > libcalls-list.tmp
626         $(SHELL) $(srcdir)/mvifdiff.sh libcalls-list.tmp libcalls-list
627         $(STAMP) $@
629 syscall_arch.go: s-syscall_arch; @true
630 s-syscall_arch: Makefile
631         rm -f syscall_arch.go.tmp
632         echo "package syscall" > syscall_arch.go.tmp
633         echo 'const ARCH = "'$(GOARCH)'"' >> syscall_arch.go.tmp
634         echo 'const OS = "'$(GOOS)'"' >> syscall_arch.go.tmp
635         $(SHELL) $(srcdir)/mvifdiff.sh syscall_arch.go.tmp syscall_arch.go
636         $(STAMP) $@
638 SYSINFO_FLAGS = \
639         $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
640         $(CPPFLAGS) $(OSCFLAGS) -O
642 gen-sysinfo.go: s-gen-sysinfo; @true
643 s-gen-sysinfo: $(srcdir)/sysinfo.c config.h
644         $(CC) $(SYSINFO_FLAGS) -fdump-go-spec=tmp-gen-sysinfo.go -std=gnu99 -S -o sysinfo.s $(srcdir)/sysinfo.c
645         rm -f sysinfo.s
646         $(SHELL) $(srcdir)/mvifdiff.sh tmp-gen-sysinfo.go gen-sysinfo.go
647         $(STAMP) $@
649 errno.i: s-errno; @true
650 s-errno:
651         echo '#include <errno.h>' | $(CC) $(SYSINFO_FLAGS) -x c - -E -dM > tmp-errno.i
652         $(SHELL) $(srcdir)/mvifdiff.sh tmp-errno.i errno.i
653         $(STAMP) $@
655 sysinfo.go: s-sysinfo; @true
656 s-sysinfo: $(srcdir)/mksysinfo.sh gen-sysinfo.go errno.i
657         GOARCH=$(GOARCH) GOOS=$(GOOS) $(SHELL) $(srcdir)/mksysinfo.sh
658         $(SHELL) $(srcdir)/mvifdiff.sh tmp-sysinfo.go sysinfo.go
659         $(STAMP) $@
661 # The epoll struct has an embedded union and is packed on x86_64,
662 # which is too complicated for mksysinfo.sh.  We find the offset of
663 # the only field we care about in configure.ac, and generate the
664 # struct here.
665 epoll.go: s-epoll; @true
666 s-epoll: Makefile
667         rm -f epoll.go.tmp
668         echo 'package syscall' > epoll.go.tmp
669         echo 'type EpollEvent struct {' >> epoll.go.tmp
670         echo '  Events uint32' >> epoll.go.tmp
671         case "$(SIZEOF_STRUCT_EPOLL_EVENT),$(STRUCT_EPOLL_EVENT_FD_OFFSET)" in \
672         0,0) echo 1>&2 "*** struct epoll_event data.fd offset unknown"; \
673            exit 1; ;; \
674         8,4) echo '     Fd int32' >> epoll.go.tmp; ;; \
675         12,4) echo '    Fd int32' >> epoll.go.tmp; \
676            echo '       Pad [4]byte' >> epoll.go.tmp; ;; \
677         12,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
678            echo '       Fd int32' >> epoll.go.tmp; ;; \
679         16,8) echo '    Pad [4]byte' >> epoll.go.tmp; \
680            echo '       Fd int32' >> epoll.go.tmp; \
681            echo '       Pad2 [4]byte' >> epoll.go.tmp; ;; \
682         *) echo 1>&2 "*** struct epoll_event unsupported"; \
683            exit 1; ;; \
684         esac
685         echo '}' >> epoll.go.tmp
686         $(SHELL) $(srcdir)/mvifdiff.sh epoll.go.tmp epoll.go
687         $(STAMP) $@
689 if LIBGO_IS_LINUX
690 syscall_lib_clone_lo = syscall/clone_linux.lo
691 else
692 syscall_lib_clone_lo =
693 endif
695 if LIBGO_IS_X86
696 golangorg_x_sys_cpu_gccgo_lo = golang.org/x/sys/cpu_gccgo.lo
697 else
698 golangorg_x_sys_cpu_gccgo_lo =
699 endif
701 PACKAGES = $(shell cat $(srcdir)/libgo-packages.txt)
703 libgo_go_objs = \
704         $(addsuffix .lo,$(PACKAGES)) \
705         internal/bytealg/bytealg.lo \
706         reflect/makefunc_ffi_c.lo \
707         $(syscall_lib_clone_lo) \
708         syscall/errno.lo \
709         syscall/signame.lo \
710         syscall/wait.lo \
711         $(golangorg_x_net_lif_lo) \
712         $(golangorg_x_net_route_lo) \
713         log/syslog/syslog_c.lo \
714         $(os_lib_inotify_lo) \
715         runtime/internal/atomic_c.lo \
716         sync/atomic_c.lo \
717         internal/cpu/cpu_gccgo.lo \
718         $(golangorg_x_sys_cpu_gccgo_lo)
720 libgo_ldflags = \
721         -version-info $(libtool_VERSION) $(PTHREAD_CFLAGS) $(AM_LDFLAGS)
723 libgo_libadd = \
724         $(libgo_go_objs) ../libbacktrace/libbacktrace.la \
725         $(LIBATOMIC) $(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS)
727 libgo_la_SOURCES = $(runtime_files)
728 libgo_la_LDFLAGS = $(libgo_ldflags)
729 libgo_la_LIBADD = $(libgo_libadd)
731 libgo_llgo_la_SOURCES = $(runtime_files)
732 libgo_llgo_la_LDFLAGS = $(libgo_ldflags)
733 libgo_llgo_la_LIBADD = $(libgo_libadd)
735 libgobegin_a_SOURCES = \
736         runtime/go-main.c
738 libgobegin_llgo_a_SOURCES = \
739         runtime/go-main.c
741 # Use -fPIC for libgobegin so that it can be put in a PIE.
742 libgobegin_a_CFLAGS = $(AM_CFLAGS) -fPIC
743 libgobegin_llgo_a_CFLAGS = $(AM_CFLAGS) -fPIC
745 libgolibbegin_a_SOURCES = \
746         runtime/go-libmain.c
748 libgolibbegin_a_CFLAGS = $(AM_CFLAGS) -fPIC
750 GOTOOL_PACKAGES = $(shell cat $(srcdir)/gotool-packages.txt)
752 libgotool_a_SOURCES =
753 libgotool_a_DEPENDENCIES = $(addsuffix .lo,$(GOTOOL_PACKAGES))
754 libgotool_a_LIBADD = $(addsuffix .o,$(GOTOOL_PACKAGES))
756 define STATIC_template
757 $(subst -,_,$(subst .,_,$(subst /,_,$(1))))_GOCFLAGS = -static
758 endef
760 $(foreach package,$(GOTOOL_PACKAGES),$(eval $(call STATIC_template,$(package).lo)))
762 # Make sure runtime.inc is built before compiling any .c file.
763 $(libgo_la_OBJECTS): runtime.inc
764 $(libgo_llgo_la_OBJECTS): runtime.inc
765 $(libgobegin_a_OBJECTS): runtime.inc
766 $(libgobegin_llgo_a_OBJECTS): runtime.inc
767 $(libgolibbegin_a_OBJECTS): runtime.inc
769 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
771 GOCFLAGS = $(CFLAGS)
772 AM_GOCFLAGS = $(STRINGOPS_FLAG) $(GO_SPLIT_STACK)
773 GOCOMPILE = $(GOC) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_GOCFLAGS) $(GOCFLAGS)
775 LTGOCOMPILE = $(LIBTOOL) --tag GO --mode=compile $(GOC) $(INCLUDES) \
776         $(AM_GOCFLAGS) $(GOCFLAGS)
778 GOLINK = $(LIBTOOL) --tag GO --mode-link $(GOC) \
779         $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_GOCFLAGS) $(LTLDFLAGS) -o $@
781 # Build the dependencies for a Go package.
782 BUILDDEPS = \
783         $(MKDIR_P) $(@D); \
784         dir=`echo $@ | sed -e 's/.lo.dep$$//'`; \
785         files=`$(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/$$dir --extrafiles="$(extra_go_files_$(subst .,_,$(subst /,_,$(subst .lo.dep,,$@))))" $(matchargs_$(subst /,_,$(subst .lo.dep,,$@)))`; \
786         $(SHELL) $(srcdir)/godeps.sh `echo $@ | sed -e 's/.dep$$//'` $$files > $@.tmp; \
787         if ! cmp $@.tmp $@ >/dev/null 2>/dev/null; then \
788           rm -f `echo $@ | sed -e 's/\.dep$$//'`; \
789         fi; \
790         mv -f $@.tmp $@
792 # Build the .go files for a package, generating a .lo file.
793 BUILDPACKAGE = \
794         $(MKDIR_P) $(@D); \
795         files=`echo $^ | sed -e 's/[^ ]*\.gox//g' -e 's/[^ ]*\.dep//'`; \
796         $(LTGOCOMPILE) -I . -c -fgo-pkgpath=`echo $@ | sed -e 's/.lo$$//'` $($(subst -,_,$(subst .,_,$(subst /,_,$@)))_GOCFLAGS) -o $@ $$files
798 # How to build a .gox file from a .lo file.
799 # Matching .o file can either be in the same directory as the .lo (non-PIC
800 # object) or in the .libs directory (PIC object).
801 BUILDGOX = \
802         f="$(basename $<).o"; \
803         if test ! -f $$f; then \
804           f="$(basename $(<D)/.libs/$(<F)).o"; \
805         fi; \
806         $(OBJCOPY) -j $(GO_EXPORT_SECTION_NAME) $$f $@.tmp; \
807         $(SHELL) $(srcdir)/mvifdiff.sh $@.tmp `echo $@ | sed -e 's/s-gox/gox/'`
809 GOTESTFLAGS =
810 GOBENCH = 
812 # Check a package.
813 CHECK = \
814         GC="$(GOC) $(GOCFLAGS) $($(subst /,_,$@)_GOCFLAGS) -L `${PWD_COMMAND}` -L `${PWD_COMMAND}`/.libs"; \
815         export GC; \
816         GOLIBS="$(extra_check_libs_$(subst .,_,$(subst /,_,$(@D)))) $(MATH_LIBS) $(NET_LIBS) $(LIBS)"; \
817         export GOLIBS; \
818         RUNTESTFLAGS="$(RUNTESTFLAGS)"; \
819         export RUNTESTFLAGS; \
820         MAKE="$(MAKE)"; \
821         export MAKE; \
822         NM="$(NM)"; \
823         export NM; \
824         libgccdir=`${GOC} ${GOCFLAGS} -print-libgcc-file-name | sed -e 's|/[^/]*$$||'`; \
825         LD_LIBRARY_PATH="`${PWD_COMMAND}`/.libs:$${libgccdir}:${LD_LIBRARY_PATH}"; \
826         LD_LIBRARY_PATH=`echo $${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
827         export LD_LIBRARY_PATH; \
828         $(MKDIR_P) $(@D); \
829         rm -f $@-testsum $@-testlog; \
830         files=`$(SHELL) $(srcdir)/match.sh --goarch=$(GOARCH) --goos=$(GOOS) --srcdir=$(srcdir)/go/$(@D) --extrafiles="$(extra_go_files_$(subst .,_,$(subst /,_,$(@D))))" $(matchargs_$(subst /,_,$(@D)))`; \
831         if test "$(USE_DEJAGNU)" = "yes"; then \
832           $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --dejagnu=yes --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" --testname="$(@D)" $(GOTESTFLAGS); \
833         elif test "$(GOBENCH)" != ""; then \
834           $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" --bench="$(GOBENCH)" $(GOTESTFLAGS); \
835         else \
836           if $(SHELL) $(srcdir)/testsuite/gotest --goarch=$(GOARCH) --goos=$(GOOS) --basedir=$(srcdir) --srcdir=$(srcdir)/go/$(@D) --pkgpath="$(@D)" --pkgfiles="$$files" $(GOTESTFLAGS) >>$@-testlog 2>&1; then \
837             echo "PASS: $(@D)" >> $@-testlog; \
838             echo "PASS: $(@D)"; \
839             echo "PASS: $(@D)" > $@-testsum; \
840           else \
841             echo "FAIL: $(@D)" >> $@-testlog; \
842             cat $@-testlog; \
843             echo "FAIL: $(@D)" > $@-testsum; \
844             exit 1; \
845           fi; \
846         fi
848 # Build all packages before checking any.
849 CHECK_DEPS = \
850         $(toolexeclibgo_DATA) \
851         $(toolexeclibgoarchive_DATA) \
852         $(toolexeclibgocompress_DATA) \
853         $(toolexeclibgocontainer_DATA) \
854         $(toolexeclibgocrypto_DATA) \
855         $(toolexeclibgodebug_DATA) \
856         $(toolexeclibgoencoding_DATA) \
857         $(toolexeclibgogo_DATA) \
858         $(toolexeclibgohash_DATA) \
859         $(toolexeclibgoimage_DATA) \
860         $(toolexeclibgoindex_DATA) \
861         $(toolexeclibgoio_DATA) \
862         $(toolexeclibgolog_DATA) \
863         $(toolexeclibgomath_DATA) \
864         $(toolexeclibgomime_DATA) \
865         $(toolexeclibgonet_DATA) \
866         $(toolexeclibgonethttp_DATA) \
867         $(toolexeclibgoos_DATA) \
868         $(toolexeclibgopath_DATA) \
869         $(toolexeclibgorpc_DATA) \
870         $(toolexeclibgoruntime_DATA) \
871         $(toolexeclibgosync_DATA) \
872         $(toolexeclibgotesting_DATA) \
873         $(toolexeclibgotext_DATA) \
874         $(toolexeclibgotexttemplate_DATA) \
875         $(toolexeclibgounicode_DATA) \
876         $(noinst_DATA) \
877         $(noinst_LIBRARIES)
879 if GOC_IS_LLGO
880 CHECK_DEPS += libgo-llgo.la libgobegin-llgo.a
881 else
882 CHECK_DEPS += libgo.la libgobegin.a
883 endif
885 # PACKAGE_template defines the rules for each package.
886 # For example, for the package bufio, it produces:
888 # @go_include@ bufio.lo.dep
889 # bufio.lo.dep: $(srcdir)/go/bufio/*.go
890 #       $(BUILDDEPS)
891 # bufio.lo:
892 #       $(BUILDPACKAGE)
893 # bufio/check: $(CHECK_DEPS)
894 #       @$(CHECK)
895 # .PHONY: bufio/check
897 # This is invoked with $(1) set to a package, which is a directory name,
898 # such as "bufio" or "archive/tar".
899 define PACKAGE_template
900 @go_include@ $(1).lo.dep
901 $(1).lo.dep: $(srcdir)/go/$(1)/*.go
902         $$(BUILDDEPS)
903 $(1).lo:
904         $$(BUILDPACKAGE)
905 $(1)/check: $$(CHECK_DEPS)
906         @$$(CHECK)
907 .PHONY: $(1)/check
908 $(1).gox: $(1).s-gox; @true
909 $(1).s-gox: $(1).lo
910         $$(BUILDGOX)
911         $$(STAMP) $$@
912 endef
914 # This line expands PACKAGE_template once for each package name listed
915 # in $(PACKAGES).
916 $(foreach package,$(PACKAGES),$(eval $(call PACKAGE_template,$(package))))
917 $(foreach package,$(GOTOOL_PACKAGES),$(eval $(call PACKAGE_template,$(package))))
919 # Pass -ffp-contract=off, or 386-specific options, when building the
920 # math package.  MATH_FLAG is defined in configure.ac.
921 math_lo_GOCFLAGS = $(MATH_FLAG)
922 math_check_GOCFLAGS = $(MATH_FLAG)
924 # Add the generated file runtime_sysinfo.go to the runtime package.
925 extra_go_files_runtime = runtime_sysinfo.go sigtab.go
926 runtime.lo.dep: $(extra_go_files_runtime)
928 # Add generated files to the syscall package.
929 extra_go_files_syscall = \
930         libcalls.go \
931         sysinfo.go \
932         syscall_arch.go \
933         $(syscall_epoll_file)
934 syscall.lo.dep: $(extra_go_files_syscall)
936 # Pass -fgo-compiling-runtime when compiling the runtime package.
937 runtime_lo_GOCFLAGS = -fgo-c-header=runtime.inc.raw -fgo-compiling-runtime
938 runtime_check_GOCFLAGS = -fgo-compiling-runtime
939 runtime_internal_atomic_lo_GOCFLAGS = -fgo-compiling-runtime
940 runtime_internal_atomic_lo_check_GOCFLAGS = -fgo-compiling-runtime
941 runtime_internal_sys_lo_GOCFLAGS = -fgo-compiling-runtime
942 runtime_internal_sys_lo_check_GOCFLAGS = -fgo-compiling-runtime
944 # If libffi is supported (the normal case) use the ffi build tag for
945 # the runtime package.
946 if USE_LIBFFI
947 matchargs_runtime = --tag=libffi
948 else
949 matchargs_runtime =
950 endif
952 # At least for now, we need -static-libgo for this test, because
953 # otherwise we can't get the line numbers.
954 # Also use -fno-inline to get better results from the memory profiler.
955 runtime_pprof_check_GOCFLAGS = -static-libgo -fno-inline
957 extra_go_files_runtime_internal_sys = version.go
958 runtime/internal/sys.lo.dep: $(extra_go_files_runtime_internal_sys)
960 extra_go_files_internal_cpu = cpugen.go
961 internal/cpu.lo.dep: $(extra_go_files_internal_cpu)
963 extra_go_files_golang_org_x_sys_cpu = gcpugen.go
964 golang.org/x/sys/cpu.lo.dep: $(extra_go_files_golang_org_x_sys_cpu)
966 extra_go_files_internal_goroot = zstdpkglist.go
967 internal/goroot.lo.dep: $(extra_go_files_internal_goroot)
969 extra_go_files_go_types = gccgosizes.go
970 go/types.lo.dep: $(extra_go_files_go_types)
972 extra_go_files_cmd_internal_objabi = objabi.go
973 cmd/internal/objabi.lo.dep: $(extra_go_files_cmd_internal_objabi)
975 extra_go_files_cmd_go_internal_cfg = zdefaultcc.go
976 cmd/go/internal/cfg.lo.dep: $(extra_go_files_cmd_go_internal_cfg)
978 extra_check_libs_cmd_go_internal_cache = $(abs_builddir)/libgotool.a
979 extra_check_libs_cmd_go_internal_generate = $(abs_builddir)/libgotool.a
980 extra_check_libs_cmd_go_internal_get = $(abs_builddir)/libgotool.a
981 extra_check_libs_cmd_go_internal_load = $(abs_builddir)/libgotool.a
982 extra_check_libs_cmd_go_internal_lockedfile = $(abs_builddir)/libgotool.a
983 extra_check_libs_cmd_go_internal_imports = $(abs_builddir)/libgotool.a
984 extra_check_libs_cmd_go_internal_modconv = $(abs_builddir)/libgotool.a
985 extra_check_libs_cmd_go_internal_modfetch = $(abs_builddir)/libgotool.a
986 extra_check_libs_cmd_go_internal_modfetch_codehost = $(abs_builddir)/libgotool.a
987 extra_check_libs_cmd_go_internal_modfile = $(abs_builddir)/libgotool.a
988 extra_check_libs_cmd_go_internal_modload = $(abs_builddir)/libgotool.a
989 extra_check_libs_cmd_go_internal_module = $(abs_builddir)/libgotool.a
990 extra_check_libs_cmd_go_internal_mvs = $(abs_builddir)/libgotool.a
991 extra_check_libs_cmd_go_internal_search = $(abs_builddir)/libgotool.a
992 extra_check_libs_cmd_go_internal_web2 = $(abs_builddir)/libgotool.a
993 extra_check_libs_cmd_go_internal_work = $(abs_builddir)/libgotool.a
995 extra_check_libs_cmd_vet_internal_cfg = $(abs_builddir)/libgotool.a
997 # FIXME: The following C files may as well move to the runtime
998 # directory and be treated like other C files.
1000 # Use C code to speed up internal/bytealg.IndexByte and friends.
1001 internal/bytealg/bytealg.lo: go/internal/bytealg/bytealg.c runtime.inc
1002         @$(MKDIR_P) internal/bytealg
1003         $(LTCOMPILE) -c -o $@ $(srcdir)/go/internal/bytealg/bytealg.c
1005 # Use a C function with a fixed number of arguments to call a C
1006 # varargs function.
1007 log/syslog/syslog_c.lo: go/log/syslog/syslog_c.c runtime.inc
1008         @$(MKDIR_P) log/syslog
1009         $(LTCOMPILE) -c -o $@ $(srcdir)/go/log/syslog/syslog_c.c
1011 # The interface to libffi from the reflect package is written in C.
1012 reflect/makefunc_ffi_c.lo: go/reflect/makefunc_ffi_c.c runtime.inc
1013         @$(MKDIR_P) reflect
1014         $(LTCOMPILE) -c -o $@ $(srcdir)/go/reflect/makefunc_ffi_c.c
1016 # The atomic functions are written in C.
1017 runtime/internal/atomic_c.lo: go/runtime/internal/atomic/atomic.c runtime.inc
1018         @$(MKDIR_P) runtime/internal
1019         $(LTCOMPILE) -c -o $@ $(srcdir)/go/runtime/internal/atomic/atomic.c
1020 sync/atomic_c.lo: go/sync/atomic/atomic.c runtime.inc
1021         @$(MKDIR_P) sync
1022         $(LTCOMPILE) -c -o $@ $(srcdir)/go/sync/atomic/atomic.c
1024 # A few syscall functions are written in C.
1025 syscall/clone_linux.lo: go/syscall/clone_linux.c runtime.inc
1026         @$(MKDIR_P) syscall
1027         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/clone_linux.c
1028 syscall/errno.lo: go/syscall/errno.c runtime.inc
1029         @$(MKDIR_P) syscall
1030         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/errno.c
1031 syscall/signame.lo: go/syscall/signame.c runtime.inc
1032         @$(MKDIR_P) syscall
1033         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/signame.c
1034 syscall/wait.lo: go/syscall/wait.c runtime.inc
1035         @$(MKDIR_P) syscall
1036         $(LTCOMPILE) -c -o $@ $(srcdir)/go/syscall/wait.c
1038 # internal/cpu needs some C code.
1039 internal/cpu/cpu_gccgo.lo: go/internal/cpu/cpu_gccgo.c runtime.inc
1040         @$(MKDIR_P) internal/cpu
1041         $(LTCOMPILE) -c -o $@ $(srcdir)/go/internal/cpu/cpu_gccgo.c
1043 # Similarly, golang.org/x/sys/cpu needs some C code.
1044 golang.org/x/sys/cpu_gccgo.lo: go/golang.org/x/sys/cpu/cpu_gccgo.c runtime.inc
1045         @$(MKDIR_P) golang.org/x/sys
1046         $(LTCOMPILE) -c -o $@ $(srcdir)/go/golang.org/x/sys/cpu/cpu_gccgo.c
1048 # Solaris 11.4 changed the type of fields in struct stat.
1049 # Use a build tag, based on a configure check, to cope.
1050 if LIBGO_IS_SOLARIS
1051 if HAVE_STAT_TIMESPEC
1052 matchargs_os = --tag=solaristag
1053 else
1054 matchargs_os =
1055 endif
1056 else
1057 matchargs_os =
1058 endif
1060 if LIBGO_IS_BSD
1062 # Build golang.org/x/net/route only on BSD systems.
1064 $(eval $(call PACKAGE_template,golang.org/x/net/route))
1066 golangorg_x_net_route_lo = \
1067         golang.org/net/route.lo
1069 endif
1071 if LIBGO_IS_SOLARIS
1073 # Build golang.org/x/net/lif only on Solaris systems.
1075 $(eval $(call PACKAGE_template,golang.org/x/net/lif))
1077 golangorg_x_net_lif_lo = \
1078         golang.org/x/net/lif.lo
1080 endif
1082 TEST_PACKAGES = $(addsuffix /check,$(shell cat $(srcdir)/check-packages.txt))
1084 check: check-tail
1085 check-recursive: check-head
1087 check-head:
1088         @echo "Test Run By $${USER} on `date`" > libgo.head
1089         @echo "Native configuration is $(host_triplet)" >> libgo.head
1090         @echo >> libgo.head
1091         @echo "         === libgo tests ===" >> libgo.head
1092         @echo >> libgo.head
1094 check-tail: check-recursive check-multi
1095         @if test "$(USE_DEJAGNU)" = "yes"; then \
1096           exit 0; \
1097         fi; \
1098         lib=`${PWD_COMMAND} | sed -e 's,^.*/\([^/][^/]*\)$$,\1,'`; \
1099         for dir in . $(MULTIDIRS); do \
1100           mv ../$${dir}/$${lib}/libgo.sum ../$${dir}/$${lib}/libgo.sum.sep; \
1101           mv ../$${dir}/$${lib}/libgo.log ../$${dir}/$${lib}/libgo.log.sep; \
1102         done; \
1103         mv libgo.head libgo.sum; \
1104         cp libgo.sum libgo.log; \
1105         echo "Schedule of variations:" >> libgo.sum; \
1106         for dir in . $(MULTIDIRS); do \
1107           multidir=../$${dir}/$${lib}; \
1108           multivar=`cat $${multidir}/libgo.var`; \
1109           echo "    $${multivar}" >> libgo.sum; \
1110         done; \
1111         echo >> libgo.sum; \
1112         pass=0; fail=0; untested=0; \
1113         for dir in . $(MULTIDIRS); do \
1114           multidir=../$${dir}/$${lib}; \
1115           multivar=`cat $${multidir}/libgo.var`; \
1116           echo "Running target $${multivar}" >> libgo.sum; \
1117           echo "Running $(srcdir)/libgo.exp ..." >> libgo.sum; \
1118           cat $${multidir}/libgo.sum.sep >> libgo.sum; \
1119           cat $${multidir}/libgo.log.sep >> libgo.log; \
1120           if test -n "${MULTIDIRS}"; then \
1121             echo "              === libgo Summary for $${multivar} ===" >> libgo.sum; \
1122             echo >> libgo.sum; \
1123           fi; \
1124           p=`grep -c PASS $${multidir}/libgo.sum.sep`; \
1125           pass=`expr $$pass + $$p`; \
1126           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1127             echo "# of expected passes          $$p" >> libgo.sum; \
1128           fi; \
1129           p=`grep -c FAIL $${multidir}/libgo.sum.sep`; \
1130           fail=`expr $$fail + $$p`; \
1131           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1132             echo "# of unexpected failures      $$p" >> libgo.sum; \
1133           fi; \
1134           p=`grep -c UNTESTED $${multidir}/libgo.sum.sep`; \
1135           untested=`expr $$untested + $$p`; \
1136           if test "$$p" -ne "0" && test -n "${MULTIDIRS}"; then \
1137             echo "# of untested testcases               $$p" >> libgo.sum; \
1138           fi; \
1139         done; \
1140         echo >> libgo.sum; \
1141         echo "          === libgo Summary ===" >> libgo.sum; \
1142         echo >> libgo.sum; \
1143         if test "$$pass" -ne "0"; then \
1144           echo "# of expected passes            $$pass" >> libgo.sum; \
1145         fi; \
1146         if test "$$fail" -ne "0"; then \
1147           echo "# of unexpected failures        $$fail" >> libgo.sum; \
1148         fi; \
1149         if test "$$untested" -ne "0"; then \
1150           echo "# of untested testcases         $$untested" >> libgo.sum; \
1151         fi; \
1152         echo `echo $(GOC) | sed -e 's/ .*//'`  `$(GOC) -v 2>&1 | grep " version" | sed -n -e 's/.* \(version.*$$\)/\1/p'` >> libgo.sum; \
1153         echo >> libgo.log; \
1154         echo "runtest completed at `date`" >> libgo.log; \
1155         if test "$$fail" -ne "0"; then \
1156           status=1; \
1157         else \
1158           status=0; \
1159         fi; \
1160         exit $$status
1162 check-am:
1163         @rm -f libgo.sum libgo.log libgo.tail
1164         @multivar="unix"; \
1165         [ -z "$(MULTIFLAGS)" ] || multivar="$${multivar}/$(MULTIFLAGS)"; \
1166         echo "$${multivar}" > libgo.var
1167         @for f in $(TEST_PACKAGES); do \
1168            rm -f $$f-testsum $$f-testlog; \
1169          done
1170         -@$(MAKE) $(AM_MAKEFLAGS) -k $(TEST_PACKAGES)
1171         @for f in $(TEST_PACKAGES); do \
1172           if test -f $$f-testsum; then \
1173             cat $$f-testsum >> libgo.sum; \
1174           fi; \
1175           if test -f $$f-testlog; then \
1176             cat $$f-testlog >> libgo.log; \
1177           fi; \
1178         done
1180 check-multi:
1181         $(MULTIDO) $(AM_MAKEFLAGS) DO=check-am multi-do # $(MAKE)
1183 bench:
1184         -@$(MAKE) $(AM_MAKEFLAGS) -k $(TEST_PACKAGES) GOBENCH=.
1186 MOSTLYCLEANFILES = \
1187         s-runtime_sysinfo s-sigtab s-runtime-inc s-zstdpkglist \
1188         s-libcalls s-libcalls-list s-syscall_arch s-gen-sysinfo s-sysinfo \
1189         s-errno s-epoll \
1190         libgo.head libgo.sum.sep libgo.log.sep libgo.var \
1191         libcalls-list \
1192         runtime.inc runtime.inc.tmp2 runtime.inc.tmp3 runtime.inc.raw
1194 mostlyclean-local:
1195         find . -name '*.lo' -print | xargs $(LIBTOOL) --mode=clean rm -f
1196         find . -name '*.$(OBJEXT)' -print | xargs rm -f
1197         find . -name '*-testsum' -print | xargs rm -f
1198         find . -name '*-testlog' -print | xargs rm -f
1200 CLEANFILES = *.go *.c s-* libgo.sum libgo.log runtime.inc
1202 clean-local:
1203         find . -name '*.la' -print | xargs $(LIBTOOL) --mode=clean rm -f
1204         find . -name '*.a' -print | xargs rm -f
1205         find . -name '*.gox' -print | xargs rm -f
1206         find . -name '*.s-gox' -print | xargs rm -f
1208 distclean-local:
1209         find . -name '*.lo.dep' -print | xargs rm -f
1211 include $(top_srcdir)/../multilib.am