* libgnarl/a-intnam__rtems.ads: Update copyright date.
[official-gcc.git] / gotools / Makefile.am
blob4f13ffe31c3a3ec9faf623e6243b57eb52ee90b5
1 # Makefile for gotools
2 #   Copyright (C) 2015-2016 Free Software Foundation, Inc.
4 # This file is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; see the file COPYING3.  If not see
16 # <http://www.gnu.org/licenses/>.
18 ACLOCAL_AMFLAGS = -I ./config -I ../config
20 gcc_version := $(shell $(GCC_FOR_TARGET) -dumpversion)
22 libexecsubdir = $(libexecdir)/gcc/$(target_noncanonical)/$(gcc_version)
24 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
25 PWD_COMMAND = $${PWDCMD-pwd}
26 STAMP = echo timestamp >
28 libgodir = ../$(target_noncanonical)/libgo
29 LIBGODEP = $(libgodir)/libgo.la
31 LIBGOTOOL = $(libgodir)/libgotool.a
33 if NATIVE
34 # Use the compiler we just built.
35 GOCOMPILER = $(GOC_FOR_TARGET) $(XGCC_FLAGS_FOR_TARGET)
36 else
37 GOCOMPILER = $(GOC)
38 endif
40 GOCFLAGS = $(CFLAGS_FOR_TARGET)
41 GOCOMPILE = $(GOCOMPILER) $(GOCFLAGS)
43 AM_GOCFLAGS = -I $(libgodir)
44 AM_LDFLAGS = -L $(libgodir) -L $(libgodir)/.libs
45 GOLINK = $(GOCOMPILER) $(GOCFLAGS) $(AM_GOCFLAGS) $(LDFLAGS) $(AM_LDFLAGS) -o $@
47 libgosrcdir = $(srcdir)/../libgo/go
48 cmdsrcdir = $(libgosrcdir)/cmd
49 libgomiscdir = $(srcdir)/../libgo/misc
51 go_cmd_go_files = \
52         $(cmdsrcdir)/go/alldocs.go \
53         $(cmdsrcdir)/go/go11.go \
54         $(cmdsrcdir)/go/main.go
56 go_cmd_gofmt_files = \
57         $(cmdsrcdir)/gofmt/doc.go \
58         $(cmdsrcdir)/gofmt/gofmt.go \
59         $(cmdsrcdir)/gofmt/internal.go \
60         $(cmdsrcdir)/gofmt/rewrite.go \
61         $(cmdsrcdir)/gofmt/simplify.go
63 go_cmd_cgo_files = \
64         $(cmdsrcdir)/cgo/ast.go \
65         $(cmdsrcdir)/cgo/doc.go \
66         $(cmdsrcdir)/cgo/gcc.go \
67         $(cmdsrcdir)/cgo/godefs.go \
68         $(cmdsrcdir)/cgo/main.go \
69         $(cmdsrcdir)/cgo/out.go \
70         $(cmdsrcdir)/cgo/util.go
72 GCCGO_INSTALL_NAME := $(shell echo gccgo|sed '$(program_transform_name)')
73 GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
74 GXX_INSTALL_NAME := $(shell echo g++|sed '$(program_transform_name)')
76 zdefaultcc.go: s-zdefaultcc; @true
77 s-zdefaultcc: Makefile
78         echo 'package main' > zdefaultcc.go.tmp
79         echo 'const defaultGCCGO = "$(bindir)/$(GCCGO_INSTALL_NAME)"' >> zdefaultcc.go.tmp
80         echo 'const defaultCC = "$(GCC_INSTALL_NAME)"' >> zdefaultcc.go.tmp
81         echo 'const defaultCXX = "$(GXX_INSTALL_NAME)"' >> zdefaultcc.go.tmp
82         echo 'const defaultPkgConfig = "pkg-config"' >> zdefaultcc.go.tmp
83         $(SHELL) $(srcdir)/../move-if-change zdefaultcc.go.tmp zdefaultcc.go
84         $(STAMP) $@ 
86 MOSTLYCLEANFILES = \
87         zdefaultcc.go s-zdefaultcc \
88         check-gccgo check-gcc gotools.head *-testlog gotools.sum gotools.log \
89         *.sent
91 mostlyclean-local:
92         rm -rf check-go-dir check-runtime-dir cgo-test-dir carchive-test-dir
94 if NATIVE
96 # For a native build we build the programs using the newly built libgo
97 # and install them as regular programs.
99 bin_PROGRAMS = go$(EXEEXT) gofmt$(EXEEXT)
100 noinst_PROGRAMS = cgo$(EXEEXT)
101 man_MANS = go.1 gofmt.1
103 go$(EXEEXT): $(go_cmd_go_files) $(LIBGOTOOL) $(LIBGODEP)
104         $(GOLINK) $(go_cmd_go_files) $(LIBGOTOOL) $(LIBS) $(NET_LIBS)
105 gofmt$(EXEEXT): $(go_cmd_gofmt_files) $(LIBGODEP)
106         $(GOLINK) $(go_cmd_gofmt_files) $(LIBS) $(NET_LIBS)
107 cgo$(EXEEXT): $(go_cmd_cgo_files) zdefaultcc.go $(LIBGODEP)
108         $(GOLINK) $(go_cmd_cgo_files) zdefaultcc.go $(LIBS) $(NET_LIBS)
110 install-exec-local: cgo$(EXEEXT)
111         $(MKDIR_P) $(DESTDIR)$(libexecsubdir)
112         rm -f $(DESTDIR)$(libexecsubdir)/cgo$(exeext)
113         $(INSTALL_PROGRAM) cgo$(exeext) $(DESTDIR)$(libexecsubdir)/cgo$(exeext)
115 uninstall-local:
116         rm -f $(DESTDIR)$(libexecsubdir)/cgo$(exeext)
118 # Run tests using the go tool, and frob the output to look like that
119 # generated by DejaGNU.  The main output of this is two files:
120 # gotools.sum and gotools.log.
122 # check-head starts generating the log files in DejaGNU format.  This
123 # is a separate target so that the date is approximately when we start
124 # running the tests.
125 check-head:
126         @echo "Test Run By $${USER} on `date`" > gotools.head
127         @echo "Native configuration is $(host_triplet)" >> gotools.head
128         @echo >> gotools.head
129         @echo "         === gotools tests ===" >> gotools.head
130         @echo >> gotools.head
132 # check-gccgo is a little shell script that executes gccgo with the
133 # options to pick up the newly built libgo.
134 check-gccgo: Makefile
135         rm -f $@ $@.tmp
136         echo "#!/bin/sh" > $@.tmp
137         abs_libgodir=`cd $(libgodir) && $(PWD_COMMAND)`; \
138         echo "$(GOCOMPILE)" '"$$@"' "-I $${abs_libgodir} -L $${abs_libgodir} -L $${abs_libgodir}/.libs" >> $@.tmp
139         chmod +x $@.tmp
140         mv -f $@.tmp $@
142 # check-gcc is a little shell script that executes the newly built gcc
143 # with the options to pick up the newly built libgo.
144 check-gcc: Makefile
145         rm -f $@ $@.tmp
146         echo "#!/bin/sh" > $@.tmp
147         abs_libgodir=`cd $(libgodir) && $(PWD_COMMAND)`; \
148         echo "$(GCC_FOR_TARGET)" '"$$@"' "-L $${abs_libgodir} -L $${abs_libgodir}/.libs" >> $@.tmp
149         chmod +x $@.tmp
150         mv -f $@.tmp $@
152 # CHECK_ENV sets up the environment to run the newly built go tool.
153 # If you change this, change ECHO_ENV, below.
154 # The fl shell variable is used to avoid having FAIL appear
155 # in the log unnecessarily.
156 CHECK_ENV = \
157         PATH=`echo $(abs_builddir):$${PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
158         export PATH; \
159         GCCGO="$(abs_builddir)/check-gccgo"; \
160         export GCCGO; \
161         CC="$(abs_builddir)/check-gcc"; \
162         export CC; \
163         GCCGOTOOLDIR="$(abs_builddir)"; \
164         export GCCGOTOOLDIR; \
165         GO_TESTING_GOTOOLS=yes; \
166         export GO_TESTING_GOTOOLS; \
167         abs_libgodir=`cd $(libgodir) && $(PWD_COMMAND)`; \
168         LD_LIBRARY_PATH=`echo $${abs_libgodir}/.libs:$${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
169         export LD_LIBRARY_PATH; \
170         GOROOT=$${abs_libgodir}; \
171         export GOROOT; \
172         fl1="FA"; fl2="IL"; fl="$${fl1}$${fl2}";
174 # ECHO_ENV is a variant of CHECK_ENV to put into a testlog file.
175 # It assumes that abs_libgodir is set.
176 ECHO_ENV = PATH=`echo $(abs_builddir):$${PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'` GCCGO='$(abs_builddir)/check-gccgo' CC='$(abs_builddir)/check-gcc' GCCGOTOOLDIR='$(abs_builddir)' GO_TESTING_GOTOOLS=yes LD_LIBRARY_PATH=`echo $${abs_libgodir}/.libs:$${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'` GOROOT=`echo $${abs_libgodir}`
178 # check-go-tools runs `go test cmd/go` in our environment.
179 check-go-tool: go$(EXEEXT) cgo$(EXEEXT) check-head check-gccgo check-gcc
180         rm -rf check-go-dir cmd_go-testlog
181         $(MKDIR_P) check-go-dir/src/cmd/go
182         cp $(cmdsrcdir)/go/*.go check-go-dir/src/cmd/go/
183         cp -r $(cmdsrcdir)/go/internal check-go-dir/src/cmd/go/
184         cp $(libgodir)/zstdpkglist.go check-go-dir/src/cmd/go/internal/load/
185         cp $(libgodir)/zdefaultcc.go check-go-dir/src/cmd/go/internal/cfg/
186         cp -r $(cmdsrcdir)/go/testdata check-go-dir/src/cmd/go/
187         cp -r $(cmdsrcdir)/internal check-go-dir/src/cmd/
188         @abs_libgodir=`cd $(libgodir) && $(PWD_COMMAND)`; \
189         abs_checkdir=`cd check-go-dir && $(PWD_COMMAND)`; \
190         echo "cd check-go-dir/src/cmd/go && $(ECHO_ENV) GOPATH=$${abs_checkdir} $(abs_builddir)/go$(EXEEXT) test -test.short -test.v" > cmd_go-testlog
191         $(CHECK_ENV) \
192         GOPATH=`cd check-go-dir && $(PWD_COMMAND)`; \
193         export GOPATH; \
194         (cd check-go-dir/src/cmd/go && $(abs_builddir)/go$(EXEEXT) test -test.short -test.v) >> cmd_go-testlog 2>&1 || echo "--- $${fl} go test cmd/go (0.00s)" >> cmd_go-testlog
195         grep '^--- ' cmd_go-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/'
197 # check-runtime runs `go test runtime` in our environment.
198 # The runtime package is also tested as part of libgo,
199 # but the runtime tests use the go tool heavily, so testing
200 # here too will catch more problems.
201 check-runtime: go$(EXEEXT) cgo$(EXEEXT) check-head check-gccgo check-gcc
202         rm -rf check-runtime-dir runtime-testlog
203         $(MKDIR_P) check-runtime-dir
204         @abs_libgodir=`cd $(libgodir) && $(PWD_COMMAND)`; \
205         LD_LIBRARY_PATH=`echo $${abs_libgodir}/.libs:$${LD_LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
206         GOARCH=`$(abs_builddir)/go$(EXEEXT) env GOARCH`; \
207         GOOS=`$(abs_builddir)/go$(EXEEXT) env GOOS`; \
208         files=`$(SHELL) $(libgosrcdir)/../match.sh --goarch=$${GOARCH} --goos=$${GOOS} --srcdir=$(libgosrcdir)/runtime --extrafiles="$(libgodir)/runtime_sysinfo.go $(libgodir)/sigtab.go" --tag=libffi`; \
209         echo "$(ECHO_ENV) GC='$(abs_builddir)/check-gccgo -fgo-compiling-runtime' GOARCH=$${GOARCH} GOOS=$${GOOS} $(SHELL) $(libgosrcdir)/../testsuite/gotest --goarch=$${GOARCH} --goos=$${GOOS} --basedir=$(libgosrcdir)/.. --srcdir=$(libgosrcdir)/runtime --pkgpath=runtime --pkgfiles='$${files}' -test.v" > runtime-testlog
210         $(CHECK_ENV) \
211         GC="$${GCCGO} -fgo-compiling-runtime"; \
212         export GC; \
213         GOARCH=`$(abs_builddir)/go$(EXEEXT) env GOARCH`; \
214         GOOS=`$(abs_builddir)/go$(EXEEXT) env GOOS`; \
215         files=`$(SHELL) $(libgosrcdir)/../match.sh --goarch=$${GOARCH} --goos=$${GOOS} --srcdir=$(libgosrcdir)/runtime --extrafiles="$(libgodir)/runtime_sysinfo.go $(libgodir)/sigtab.go" --tag=libffi`; \
216         $(SHELL) $(libgosrcdir)/../testsuite/gotest --goarch=$${GOARCH} --goos=$${GOOS} --basedir=$(libgosrcdir)/.. --srcdir=$(libgosrcdir)/runtime --pkgpath=runtime --pkgfiles="$${files}" -test.v >> runtime-testlog 2>&1 || echo "--- $${fl} go test runtime (0.00s)" >> runtime-testlog
217         grep '^--- ' runtime-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/'
219 # check-cgo-test runs `go test misc/cgo/test` in our environment.
220 check-cgo-test: go$(EXEEXT) cgo$(EXEEXT) check-head check-gccgo check-gcc
221         rm -rf cgo-test-dir cgo-testlog
222         $(MKDIR_P) cgo-test-dir/misc/cgo
223         cp -r $(libgomiscdir)/cgo/test cgo-test-dir/misc/cgo/
224         @abs_libgodir=`cd $(libgodir) && $(PWD_COMMAND)`; \
225         echo "cd cgo-test-dir/misc/cgo/test && $(ECHO_ENV) GOTRACEBACK=2 $(abs_builddir)/go$(EXEEXT) test -test.short -test.v" > cgo-testlog
226         $(CHECK_ENV) \
227         GOTRACEBACK=2; \
228         export GOTRACEBACK; \
229         (cd cgo-test-dir/misc/cgo/test && $(abs_builddir)/go$(EXEEXT) test -test.short -test.v) >> cgo-testlog 2>&1 || echo "--- $${fl} go test misc/cgo/test (0.00s)" >> cgo-testlog
230         grep '^--- ' cgo-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/'
232 # check-carchive-test runs `go test misc/cgo/testcarchive/carchive_test.go`
233 # in our environment.
234 check-carchive-test: go$(EXEEXT) cgo$(EXEEXT) check-head check-gccgo check-gcc
235         rm -rf carchive-test-dir carchive-testlog
236         $(MKDIR_P) carchive-test-dir/misc/cgo
237         cp -r $(libgomiscdir)/cgo/testcarchive carchive-test-dir/misc/cgo/
238         @abs_libgodir=`cd $(libgodir) && $(PWD_COMMAND)`; \
239         echo "cd carchive-test-dir/misc/cgo/testcarchive && $(ECHO_ENV) LIBRARY_PATH=`echo $${abs_libgodir}/.libs` $(abs_builddir)/go$(EXEEXT) test -test.v carchive_test.go" > carchive-testlog
240         $(CHECK_ENV) \
241         LIBRARY_PATH=`echo $${abs_libgodir}/.libs:$${LIBRARY_PATH} | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; \
242         export LIBRARY_PATH; \
243         (cd carchive-test-dir/misc/cgo/testcarchive && $(abs_builddir)/go$(EXEEXT) test -test.v carchive_test.go) >> carchive-testlog 2>&1 || echo "--- $${fl} go test misc/cgo/testcarchive (0.00s)" >> carchive-testlog
244         grep '^--- ' carchive-testlog | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/'
246 # The check targets runs the tests and assembles the output files.
247 check: check-head check-go-tool check-runtime check-cgo-test check-carchive-test
248         @mv gotools.head gotools.sum
249         @cp gotools.sum gotools.log
250         @for file in cmd_go-testlog runtime-testlog cgo-testlog carchive-testlog; do \
251           testname=`echo $${file} | sed -e 's/-testlog//' -e 's|_|/|'`; \
252           echo "Running $${testname}" >> gotools.sum; \
253           echo "Running $${testname}" >> gotools.log; \
254           sed -e 's/^--- \(.*\) ([^)]*)$$/\1/' < $${file} >> gotools.log; \
255           grep '^--- ' $${file} | sed -e 's/^--- \(.*\) ([^)]*)$$/\1/' -e 's/SKIP/UNTESTED/' >> gotools.sum; \
256         done
257         @echo >> gotools.sum
258         @echo "         === gotools Summary ===" >> gotools.sum
259         @pass=`grep -c '^PASS' gotools.sum`; \
260         if test "$${pass}" -ne "0"; then \
261           echo "# of expected passes            $${pass}" >> gotools.sum; \
262         fi
263         @fail=`grep -c '^FAIL' gotools.sum`; \
264         if test "$${fail}" -ne "0"; then \
265           echo "# of unexpected failures        $${fail}" >> gotools.sum; \
266         fi
267         @untested=`grep -c '^UNTESTED' gotools.sum`; \
268         if test "$${untested}" -ne "0"; then \
269           echo "# of untested testcases         $${untested}" >> gotools.sum; \
270         fi
271         @echo `echo $(GOC_FOR_TARGET) | sed -e 's/ .*//'`  `$(GOC_FOR_TARGET) -v 2>&1 | grep " version" | sed -n -e 's/.* \(version.*$$\)/\1/p'` >> gotools.sum
272         @echo >> gotools.log
273         @echo "runtest completed at `date`" >> gotools.log
274         @if grep '^FAIL' gotools.sum >/dev/null 2>&1; then exit 1; fi
276 .PHONY: check check-head check-go-tool check-runtime check-cgo-test check-carchive-test
278 else
280 # For a non-native build we have to build the programs using a
281 # previously built host (or build -> host) Go compiler.  We should
282 # only do this if such a compiler is available.  We also need to get
283 # the right values for GOARCH and GOOS in the default build context in
284 # the go/build package.  Figure this out later.
286 endif