diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2004-07-08 21:49:44 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2004-07-08 21:49:44 +0000 |
commit | 3922b21671431c0568408eb536a3c02e7e921eb2 (patch) | |
tree | d0a03392d5d713ca63086b6c97f1accd9fc881de /Makefile.tpl | |
parent | f37f25151b3b02bd8603cb9f2d7f9134cc07aab5 (diff) | |
download | gcc-3922b21671431c0568408eb536a3c02e7e921eb2.zip gcc-3922b21671431c0568408eb536a3c02e7e921eb2.tar.gz gcc-3922b21671431c0568408eb536a3c02e7e921eb2.tar.bz2 |
re PR target/16344 (libstdc++'s PCH built by profiledbootstrap does not work with the built compiler)
PR target/16344
* Makefile.tpl (profiledbootstrap): Build runtime libraries with
feedback based compiler.
* Makefile.in: Rebuilt.
From-SVN: r84315
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 38ff3db..ae95eb2 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1288,19 +1288,19 @@ profiledbootstrap: all-bootstrap configure-gcc s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(SET_LIB_PATH) \ $(HOST_EXPORTS) \ - echo "Bootstrapping the compiler"; \ + echo "Bootstrapping training compiler"; \ cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) stageprofile_build @r=`${PWD_COMMAND}`; export r; \ - s=`cd $(srcdir); ${PWD_COMMAND}` ; export s; \ - $(SET_LIB_PATH) \ - echo "Building runtime libraries and training compiler"; \ - $(MAKE) $(RECURSE_FLAGS_TO_PASS) all - @r=`${PWD_COMMAND}`; export r; \ s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(SET_LIB_PATH) \ $(HOST_EXPORTS) \ echo "Building feedback based compiler"; \ cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) stagefeedback_build + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}` ; export s; \ + $(SET_LIB_PATH) \ + echo "Building runtime libraries"; \ + $(MAKE) $(RECURSE_FLAGS_TO_PASS) all .PHONY: cross cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld |