Henrik Bach
2004-Nov-20 07:26 UTC
[LLVMdev] Link tests are not allowed after GCC_NO_EXECUTABLES
Hi, I can't figure what this means: ------------------ ... checking for g++ that supports -ffunction-sections -fdata-sections... no checking for sin in -lm... configure: error: Link tests are not allowed after GCC_NO_EXECUTABLES. make: *** [configure-target-libstdc++-v3] Error 1 ------------------ Henrik. ============================================================Henrik Bach Open Source Developer e-mail: henrik_bach_llvm at hotmail.com ============================================================Got Freedom? Software Freedom Day 2004 - 28th of August http://www.softwarefreedomday.org/ ============================================================ _________________________________________________________________ F� alle de nye og sjove ikoner med MSN Messenger http://messenger.msn.dk/
Reid Spencer
2004-Nov-22 17:52 UTC
[LLVMdev] Link tests are not allowed after GCC_NO_EXECUTABLES
Actually, this message is generated by the configure script. It is telling you that after a certain point in the script, no further link tests (like the one for sin() in -lm) are permitted. Note that this does NOT occur in the LLVM configure script (grep configure for "Link tests"), so I'm not sure why its being posted here. Reid. On Mon, 2004-11-22 at 10:05, Chris Lattner wrote:> On Sat, 20 Nov 2004, Henrik Bach wrote: > > > I can't figure what this means: > > ------------------ > > ... > > checking for g++ that supports -ffunction-sections -fdata-sections... no > > checking for sin in -lm... configure: error: Link tests are not allowed > > after GCC_NO_EXECUTABLES. > > make: *** [configure-target-libstdc++-v3] Error 1 > > ------------------ > > I've never seen that before, sorry :( > > -Chris-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20041122/ca56b3da/attachment.sig>
John Criswell
2004-Nov-22 17:57 UTC
[LLVMdev] Link tests are not allowed after GCC_NO_EXECUTABLES
Chris Lattner wrote:> On Sat, 20 Nov 2004, Henrik Bach wrote: > > >>I can't figure what this means: >>------------------ >>... >>checking for g++ that supports -ffunction-sections -fdata-sections... no >>checking for sin in -lm... configure: error: Link tests are not allowed >>after GCC_NO_EXECUTABLES. >>make: *** [configure-target-libstdc++-v3] Error 1 >>------------------ > > > I've never seen that before, sorry :(You might want to google for AC_NO_EXECUTABLES. It's an autoconf test that generates the behavior you describe. Apparently the GCC folks wrote a new version of the macro due to the above behavior. I have no idea what this macro does; it is not documented in version 2.57 of the autoconf manual and is not in the autoconf macro archive. It might be in a newer manual, or you might have to read through various mailing lists located by google to figure out what it does. Hope this helps.> > -Chris >-- John T. -- ********************************************************************* * John T. Criswell Email: criswell at uiuc.edu * * Research Programmer * * University of Illinois at Urbana-Champaign * * * * "It's today!" said Piglet. "My favorite day," said Pooh. * *********************************************************************
Chris Lattner
2004-Nov-22 18:05 UTC
[LLVMdev] Link tests are not allowed after GCC_NO_EXECUTABLES
On Sat, 20 Nov 2004, Henrik Bach wrote:> I can't figure what this means: > ------------------ > ... > checking for g++ that supports -ffunction-sections -fdata-sections... no > checking for sin in -lm... configure: error: Link tests are not allowed > after GCC_NO_EXECUTABLES. > make: *** [configure-target-libstdc++-v3] Error 1 > ------------------I've never seen that before, sorry :( -Chris -- http://llvm.org/ http://nondot.org/sabre/
Seemingly Similar Threads
- [LLVMdev] Link tests are not allowed after GCC_NO_EXECUTABLES
- [LLVMdev] Link tests are not allowed after GCC_NO_EXECUTABLES
- [LLVMdev] [Cygwin] error building llvm-gcc - X86ATTAsmPrinter error in libstdc++
- [LLVMdev] llvm-gcc-4.0 compilation erros
- [LLVMdev] Patch for Path.inc on mingw