Displaying 6 results from an estimated 6 matches for "jingyuuiuc".
2006 Aug 28
1
[LLVMdev] opt -load error on Darwin
I am using llvm 1.8 and have patched ltdl.c and ltdl.h to the latest
version.
My Makefile has LLVMLIBS = LLVMCore.a LLVMSupport.a LLVMSystem.a included.
> Try using 'nm -m' on the 'opt' executable itself. Using plain nm on my
> local one yields:
> 00121a4e T
> __ZN4llvm12FunctionPass16addToPassManagerEPNS_20FunctionPassManagerTERNS_13AnalysisUsageE
>
> and nm
2006 May 19
0
[LLVMdev] help! How to build a shared library out of multiple cpp files in LLVM?
Hi guys,
I am developing a LLVM project and using LLVM building system to make an opt
pass. I find that if I implement class methods in seperate .cpp files(the
class declaration is included by all .cpp files), it will have relocation
error when I use opt -mypass to run it. I have tried to squeeze everything
in one file, then all errors are gone. But when the program goes large(or
have more than
2006 Aug 28
3
[LLVMdev] opt -load error on Darwin
Thank you, Reid.
I have applied tha patch to ltdl.c ltdl.h. The problem still exists. I
looked up the symbol on libLLVMCore.a, and found three U-entries and one
T-entry. However, the Darwin linker is not able to find the T-entry. Any
idea?
pollux:~/test jingyu$ opt -load
/Users/jingyu/tools/build-ppc/Release/lib/LLVMHello.so -help
Error opening
2006 Apr 20
3
[LLVMdev] configuration error for the latest LLVM
I just checked out the latest LLVM version from CVS server. But the
configuration failed. The messages are
...
checking whether llvm-gcc is sane... yes
configure: creating ./config.status
config.status: creating Makefile.config
config.status: creating docs/doxygen.cfg
config.status: creating utils/llvm-config/llvm-config.in
config.status: error: cannot find input file: utils/llvm-config/llvm-
2006 Aug 28
2
[LLVMdev] opt -load error on Darwin
Hi,
I am following the instructions on Writing an LLVM Pass on Darwin(8.7.0)
powerpc. The loadable library is built. But "opt -load " gives error saying
"Symbol not found". I am using LLVM 1.8. Could someone tell me how to fix
it? I have tried the same procedure on Pentium4 Redhat9. Everything is ok
there. So I think there must be some specific problem on Darwin that I
should
2006 Apr 26
1
[LLVMdev] LLC fail without gccld optimization on spec2000 int benchmarks
Hi,
In my experiments, I need to disable several linking optimizations. However,
bzip2, vortex and eon failed if "-disable-opt" was passed to gccld. I tried
the out-of-box llvm and the building process provided by llvm-test. The same
problem was observed, when I specified EXTRA_LINKTIME_OPT_FLAGS =
-disable-opt on Makefile.program and simplied typed "make" under