You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's not it. The llvm/Makefile.config has llvm-gcc configured in it.
Furthermore, the CFrontend and C++Frontend tests would have failed but they didn't.
This problem is now fixed. The configuration test for llvm-gcc includes a sanity
check that was looking for the "implementation" keyword. That keyword just got
removed from llvm. The fix is to make the sanity check look for "target
datalayout" which is probably more distinct anyway.
Extended Description
Last night's run of my nightly test yielded errors like:
*** No rule to make target
Output/sumarray-dbl.linked.rbc', needed by
Output/sumarray-dbl.linked.bc'for every single test program. The consequence was no results. The only change
to the makefile system was this:
--- Makefile.programs 21 Mar 2007 00:19:32 -0000 1.263
+++ Makefile.programs 28 Mar 2007 08:31:17 -0000 1.264
@@ -221,12 +221,11 @@ LLCBETAOPTION := -sched=list-td
endif
ifeq ($(ARCH),IA64)
LLCBETAOPTION := -sched=simple
endif
ifeq ($(ARCH),x86)
-LLCBETAOPTION := -enable-rematerialization
-# -enable-tail-merge
+LLCBETAOPTION := -enable-tail-merge
#-regalloc=local -fast
endif
ifeq ($(ARCH),Sparc)
LLCBETAOPTION := -enable-sparc-v9-insts
endif
But, I don't see how that could cause this problem.
The text was updated successfully, but these errors were encountered: