Displaying 6 results from an estimated 6 matches for "lsupport".
Did you mean:
support
2003 Dec 09
0
[LLVMdev] Linking Errors?
You'll need to include the "support" library to resolve these
LeakDetector symbols. You can do this by either placing the path to
"support.o" or -lsupport on your link line (in your Makefile). Note
that if you use the -l option, you'll likely need to use -L<path> as
well to tell the linker where to find "libsupport.a" (file included by
the -lsupport option).
Reid.
Kevin Gibbs wrote:
> Can anyone help with these crazy lin...
2003 Dec 09
2
[LLVMdev] Linking Errors?
Can anyone help with these crazy linking errors??
/home/kgibbs/CS321/CVS/llvm/lib/Debug/vmcore.o(.gnu.linkonce.t._ZN4llvm12Lea
kDetector16addGarbageObjectEPKNS_5ValueE+0xd): In function
`llvm::LeakDetector::addGarbageObject(llvm::Value const*)':
/usr/include/c++/3.2.1/bits/stl_pair.h:148: undefined reference to
`llvm::LeakDetector::addGarbageObjectImpl(llvm::Value const*)'
2004 Oct 23
2
[LLVMdev] Link error with TOOLLINKOPTS=-ldbghelp on MinGW
...eGen/Debug/InstrSelectorEmitter.o
/C/Projects/build/MinGW/llvm/utils/TableGen/Debug/Record.o
/C/Projects/build/MinGW/llvm/utils/TableGen/Debug/RegisterInfoEmitter.o
/C/Projects/build/MinGW/llvm/utils/TableGen/Debug/TableGen.o
/C/Projects/build/MinGW/llvm/utils/TableGen/Debug/TableGenBackend.o
-lsupport -lLLVMsystem
/C/Projects/build/MinGW/llvm/mklib --tag=disable-shared --tag=CXX
--mode=link g++ -I/C/Projects/build/MinGW/llvm/utils/TableGen
-I/C/Projects/build/MinGW/llvm/../../../src/llvm/utils/TableGen
-I/C/Projects/build/MinGW/llvm/../../../src/llvm/include
-I/C/Projects/build/MinGW/llvm/in...
2003 Dec 09
3
[LLVMdev] Linking Errors?
...003 8:36 PM
> To: Kevin Gibbs
> Cc: llvmdev at cs.uiuc.edu
> Subject: Re: [LLVMdev] Linking Errors?
>
> You'll need to include the "support" library to resolve these
> LeakDetector symbols. You can do this by either placing the path to
> "support.o" or -lsupport on your link line (in your Makefile). Note
> that if you use the -l option, you'll likely need to use -L<path> as
> well to tell the linker where to find "libsupport.a" (file included by
> the -lsupport option).
>
> Reid.
>
> Kevin Gibbs wrote:
>
>...
2004 Oct 25
0
[LLVMdev] Link error with TOOLLINKOPTS=-ldbghelp on MinGW
...mitter.o
> /C/Projects/build/MinGW/llvm/utils/TableGen/Debug/Record.o
> /C/Projects/build/MinGW/llvm/utils/TableGen/Debug/RegisterInfoEmitter.o
> /C/Projects/build/MinGW/llvm/utils/TableGen/Debug/TableGen.o
> /C/Projects/build/MinGW/llvm/utils/TableGen/Debug/TableGenBackend.o
> -lsupport -lLLVMsystem
> /C/Projects/build/MinGW/llvm/mklib --tag=disable-shared --tag=CXX
> --mode=link g++ -I/C/Projects/build/MinGW/llvm/utils/TableGen
> -I/C/Projects/build/MinGW/llvm/../../../src/llvm/utils/TableGen
> -I/C/Projects/build/MinGW/llvm/../../../src/llvm/include
> -I/C/Pro...
2003 Nov 13
4
[LLVMdev] Headers & Libraries
...y own project, I've added an AC_CHECK_LIB line to check for
libipo.a as a test that the LLVM libraries are available. In order
to get this to work, I needed to use the last argument of AC_CHECK_LIB
to specify the dependent libraries. To get this to work correctly, I had
to specify vmcore.o and -lsupport to linker. Now, the question is, why
isn't vmcore.o a LIBRARY? I also note that in the objects generated by
an LLVM compilation, there are numerous .o files in t $OBJDIR/lib/Debug
directory. Is that by design? It certain isn't very friendly for *users*
of LLVM.
After I got my configure sc...