My 7 zip file manager says that the mingw binary is corrupt for llvm 1.9. I suppose that means that those of us running windows have no hope of getting llvm right now? Someone reported this earlier but the situation remains unchanged. -Matt
SevenThunders wrote:> > > Someone reported this earlier but the situation remains unchanged. > > -Matt > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > >Thanks for getting it back up so quickly. Now if I could only get it to build on my system! Here's how my make attempt died. make[1]: Entering directory `/d/apps/llvm/tools/llvm-config' llvm[1]: Regenerating LibDeps.txt /bin/sh.exe: /d/apps/llvm/utils/GenLibDeps.pl: No such file or directory make[1]: *** [/d/apps/llvm/tools/llvm-config/LibDeps.txt] Error 127 make[1]: Leaving directory `/d/apps/llvm/tools/llvm-config' make: *** [all] Error 1 It seems as though GenLibDeps.pl does not exist but in fact it does exist in that directory. I am baffled by that. I don't really know much about Perl so I can't say if it failed while running the perl file or if it just couldnt find it for some reason. -- View this message in context: http://www.nabble.com/mingw-binary-is-corrupt-tf2702868.html#a7545363 Sent from the LLVM - Dev mailing list archive at Nabble.com.
On Sat, 2006-11-25 at 23:08 -0800, SevenThunders wrote:> Here's how my make attempt died. > > make[1]: Entering directory `/d/apps/llvm/tools/llvm-config' > llvm[1]: Regenerating LibDeps.txt > /bin/sh.exe: /d/apps/llvm/utils/GenLibDeps.pl: No such file or directory > make[1]: *** [/d/apps/llvm/tools/llvm-config/LibDeps.txt] Error 127 > make[1]: Leaving directory `/d/apps/llvm/tools/llvm-config' > make: *** [all] Error 1 > > It seems as though GenLibDeps.pl does not exist but in fact it does exist in > that directory. I am baffled by that. > I don't really know much about Perl so I can't say if it failed while > running the perl file or if it just couldnt find it for some reason.Here are some things to check: (1) check the first line of GenLibDeps.pl. It requires perl to be in /usr/bin/perl. If its not then the "No such file or directory" error might be referring to perl. (2) Make sure GenLibDeps.pl is executable (chmod +x GenLibDeps.pl) (3) Perhaps you don't have perl installed? Reid.