> When building LLVM 1.9 on OSX 10.4.8, I get (after a while, see attachment): > > make[1]: *** No rule to make target `/path/to/llvm-build/Debug/bin/tblgen', > needed by `/path/to/llvm-build/lib/VMCore/Debug/Intrinsics.gen.tmp'. Stop. > make: *** [install] Error 1 > > when doing: > > $LLVM_SRC/configure --prefix=$LLVM_INSTALL --with-llvmgccdir=$LLVM_FRONT > --disable-optimized --enable-targets=host-only --enable-doxygen > > LLVM 1.8 compiled fine before though.I'm able to reproduce this if I skip doing a "make" and directly do a "make install" after configuring. I believe we require people to do a full build before attempting to install. So I don't think its really a bug. Could you try doing a make first and then install? Please let me know if you have any more problems. -Tanya
Hi, Op 15-nov-06, om 03:26 heeft Tanya M. Lattner het volgende geschreven:> I'm able to reproduce this if I skip doing a "make" and directly do a > "make install" after configuring. I believe we require people to do > a full > build before attempting to install. So I don't think its really a bug. > Could you try doing a make first and then install? Please let me > know if > you have any more problems.You were right. Doing a proper "make ; make install" did the trick. After making necessary adjustments to my LLVM-app (due to disappearing of ConstantSInt and ConstantUInt, and replacement of RegisterOpt by RegisterPass), all its tests passed. Didn't check LLVM's test suite. Kind regards, Bram Adams GH-SEL, INTEC, Ghent University
>> a full >> build before attempting to install. So I don't think its really a bug. >> Could you try doing a make first and then install? Please let me >> know if >> you have any more problems. > > You were right. Doing a proper "make ; make install" did the trick. > > After making necessary adjustments to my LLVM-app (due to > disappearing of ConstantSInt and ConstantUInt, and replacement of > RegisterOpt by RegisterPass), all its tests passed. Didn't check > LLVM's test suite.Thanks for the update! -Tanya> > Kind regards, > > Bram Adams > GH-SEL, INTEC, Ghent University > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >
Hi, There is a typo in $LLVM_SRC/Makefile.rules on line 750 where it says : SharedLibKindMessage := "Lodable Module" instead of SharedLibKindMessage := "Loadable Module" Op 15-nov-06, om 15:54 heeft Bram Adams het volgende geschreven:> Didn't check > LLVM's test suite.Doing the simple LLVM-tests (on Slackware 10.2) gets: === Summary == # of expected passes 1411 # of unexpected failures 140 # of expected failures 33 I also ran the comprehensive test suite, but I'm not sure how to get similar numerical results like the simple tests yield (I only get lots of textual traces). Kind regards, Bram Adams GH-SEL, INTEC, Ghent University