Displaying 5 results from an estimated 5 matches for "tpondich".
2011 Apr 05
3
[LLVMdev] Building LLVM on Solaris/Sparc
Hi,
I'm trying to build llvm on a Solaris/Sparc machine. I get many undefined
symbols during the link phase of opt. The link command being run is below.
It is identical to the link command that gets run and works on an x86 host.
Thanks,
Tarun
g++ -I/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/include
-I/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/tools/opt
-I/n/fs/scratch/tpondich/ParallelAssert/llvm/include
-I/n/fs/scratch/tpondich/ParallelAssert/llvm/tools/opt -D_DEBUG -include
llvm/Support/Solaris.h -D_GNU_SOURCE -D__STDC_LIMIT_MACROS
-D__STDC_CONST...
2011 Aug 03
0
[LLVMdev] Building LLVM on Solaris/Sparc
...39;m trying to build llvm on a Solaris/Sparc machine. I get many undefined symbols during the link phase of opt. The link command being run is below.
>
> It is identical to the link command that gets run and works on an x86 host.
>
> Thanks,
> Tarun
>
> g++ -I/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/include -I/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/tools/opt -I/n/fs/scratch/tpondich/ParallelAssert/llvm/include -I/n/fs/scratch/tpondich/ParallelAssert/llvm/tools/opt -D_DEBUG -include llvm/Support/Solaris.h -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONST...
2011 Aug 05
0
[LLVMdev] Building LLVM on Solaris/Sparc
...chine. I get many
> undefined symbols during the link phase of opt. The link command being run
> is below.
> >
> > It is identical to the link command that gets run and works on an x86
> host.
> >
> > Thanks,
> > Tarun
> >
> > g++ -I/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/include
> -I/n/fs/scratch/tpondich/ParallelAssert/llvm-objects/tools/opt
> -I/n/fs/scratch/tpondich/ParallelAssert/llvm/include
> -I/n/fs/scratch/tpondich/ParallelAssert/llvm/tools/opt -D_DEBUG -include
> llvm/Support/Solaris.h -D_GNU_SOURCE -D__STDC_LIMIT_M...
2012 May 28
0
[LLVMdev] Insert all (including single predecessor) phi nodes
Hi,
I'm trying to implement superblock analysis as an LLVM pass. In my code, a
basic block is sometimes cloned and inserted into a neighboring position in
the cfg, with the same successors as the original basic block. The
frequently executed edge will have one predecessor, and all other
predecessor edges go to the cloned block. If there are phi nodes in the
successors, they are
2011 Mar 29
1
[LLVMdev] cross compiling to sparc with llvm
Hi,
I'm trying to use llvm/clang to cross compile to sparcv9. The following
works with a -march=sparc, but yields errors for sparcv9. Are there some
other flags that need to be specified?
Thanks,
Tarun
> clang -m64 -emit-llvm test.c -c -o test.bc
> llc -march=sparcv9 test.bc -o hello.s
ExpandIntegerResult #0: 0x8a6c478: i64 = GlobalAddress<[4 x i8]* @.str> 0
[ORD=1] [ID=0]
Do