This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Build, patch] Remove CLooG from the main configure.ac


Tobias Burnus wrote:
Now that CLooG is no longer used by GCC, it makes sense to also remove it from
the main configure file. Especially as the in-tree build currently only works
if also CLooG is available.

Turned out that I missed a dependency. One previously had all-gcc -> depends on all-cloog -> depends on all-isl.

Build on x86-64-gnu-linux and committed as obvious as Rev. 217438.

Tobias
Index: ChangeLog
===================================================================
--- ChangeLog	(Revision 217438)
+++ ChangeLog	(Arbeitskopie)
@@ -1,6 +1,6 @@
 2014-11-11  Tobias Burnus  <burnus@net-b.de>
 
	* Makefile.def: Make all-gcc depend on all-isl.
 	* Makefile.in: Regenerate.
 
 2014-11-11  David Malcolm  <dmalcolm@redhat.com>Index: ChangeLog
Index: Makefile.def
===================================================================
--- Makefile.def	(Revision 217437)
+++ Makefile.def	(Arbeitskopie)
@@ -314,6 +314,7 @@ dependencies = { module=all-gcc; on=all-libiberty;
 dependencies = { module=all-gcc; on=all-intl; };
 dependencies = { module=all-gcc; on=all-mpfr; };
 dependencies = { module=all-gcc; on=all-mpc; };
+dependencies = { module=all-gcc; on=all-isl; };
 dependencies = { module=all-gcc; on=all-build-texinfo; };
 dependencies = { module=all-gcc; on=all-build-bison; };
 dependencies = { module=all-gcc; on=all-build-flex; };
Index: Makefile.in
===================================================================
--- Makefile.in	(Revision 217437)
+++ Makefile.in	(Arbeitskopie)
@@ -47692,6 +47692,14 @@ all-stage3-gcc: maybe-all-stage3-mpc
 all-stage4-gcc: maybe-all-stage4-mpc
 all-stageprofile-gcc: maybe-all-stageprofile-mpc
 all-stagefeedback-gcc: maybe-all-stagefeedback-mpc
+all-gcc: maybe-all-isl
+
+all-stage1-gcc: maybe-all-stage1-isl
+all-stage2-gcc: maybe-all-stage2-isl
+all-stage3-gcc: maybe-all-stage3-isl
+all-stage4-gcc: maybe-all-stage4-isl
+all-stageprofile-gcc: maybe-all-stageprofile-isl
+all-stagefeedback-gcc: maybe-all-stagefeedback-isl
 all-gcc: maybe-all-build-texinfo
 
 all-stage1-gcc: maybe-all-build-texinfo

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]