diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-20 18:26:04 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-20 18:26:04 +0000 |
commit | 55df1c008fec44637ddf3ebea20a234567d0636a (patch) | |
tree | b5ffae568e0cb0caca0dfa7d2ca95713b775d0e8 | |
parent | cff9d209d363032c9ae37ed7202c13e279b39aaa (diff) | |
download | gcc-55df1c008fec44637ddf3ebea20a234567d0636a.tar.gz |
* Makefile.tpl (check-target-libgomp-c++): New.
(check-target-libitm-c++): New.
* Makefile.def (c++): Add them.
* Makefile.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188842 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile.def | 4 | ||||
-rw-r--r-- | Makefile.in | 16 | ||||
-rw-r--r-- | Makefile.tpl | 14 |
4 files changed, 39 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 4d3e86e5ca0..11af9709074 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-06-20 Jason Merrill <jason@redhat.com> + + * Makefile.tpl (check-target-libgomp-c++): New. + (check-target-libitm-c++): New. + * Makefile.def (c++): Add them. + * Makefile.in: Regenerate. + 2012-05-29 Edmar Wienskoski <edmar@freescale.com> * MAINTAINERS (Write After Approval): Add myself. diff --git a/Makefile.def b/Makefile.def index 1449a5086b6..24aadc93bc8 100644 --- a/Makefile.def +++ b/Makefile.def @@ -518,7 +518,9 @@ dependencies = { module=configure-target-libgfortran; on=all-target-libquadmath; languages = { language=c; gcc-check-target=check-gcc; }; languages = { language=c++; gcc-check-target=check-c++; lib-check-target=check-target-libstdc++-v3; - lib-check-target=check-target-libmudflap-c++; }; + lib-check-target=check-target-libmudflap-c++; + lib-check-target=check-target-libitm-c++; + lib-check-target=check-target-libgomp-c++; }; languages = { language=fortran; gcc-check-target=check-fortran; lib-check-target=check-target-libquadmath; lib-check-target=check-target-libgfortran; }; diff --git a/Makefile.in b/Makefile.in index def860e386d..f66791b457a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -41116,6 +41116,20 @@ check-target-libmudflap-c++: @endif target-libmudflap +@if target-libgomp +.PHONY: check-target-libgomp-c++ +check-target-libgomp-c++: + $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) c++.exp" check-target-libgomp + +@endif target-libgomp + +@if target-libitm +.PHONY: check-target-libitm-c++ +check-target-libitm-c++: + $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) c++.exp" check-target-libitm + +@endif target-libitm + # ---------- # GCC module # ---------- @@ -41150,7 +41164,7 @@ check-gcc-c++: s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ $(HOST_EXPORTS) \ (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); -check-c++: check-gcc-c++ check-target-libstdc++-v3 check-target-libmudflap-c++ +check-c++: check-gcc-c++ check-target-libstdc++-v3 check-target-libmudflap-c++ check-target-libitm-c++ check-target-libgomp-c++ .PHONY: check-gcc-fortran check-fortran check-gcc-fortran: diff --git a/Makefile.tpl b/Makefile.tpl index 371c3b6f7db..d898b7d2e3f 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1415,6 +1415,20 @@ check-target-libmudflap-c++: @endif target-libmudflap +@if target-libgomp +.PHONY: check-target-libgomp-c++ +check-target-libgomp-c++: + $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) c++.exp" check-target-libgomp + +@endif target-libgomp + +@if target-libitm +.PHONY: check-target-libitm-c++ +check-target-libitm-c++: + $(MAKE) RUNTESTFLAGS="$(RUNTESTFLAGS) c++.exp" check-target-libitm + +@endif target-libitm + # ---------- # GCC module # ---------- |