github.com/kidsbmilk/gofrontend_all@v0.0.0-20220701224323-6479d5976c5d/libgo/Makefile.am (about)

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