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