Displaying 8 results from an estimated 8 matches for "kistler".
Did you mean:
kister
2010 Oct 04
2
[LLVMdev] way to determine which version of llvm for llvm-gcc? Xcode specifically
...h Xcode 3.2.5's arm-apple-darwin10-llvm-g++-4.2
Calling it with --version and --verbose don't give any hints. I want to run the compiler with --emit-llvm and eventually call llc. llc isn't included in Xcode so I want to make sure I use the correct version.
Thanks in advance
--Robb Kistler
2010 Oct 05
0
[LLVMdev] way to determine which version of llvm for llvm-gcc? Xcode specifically
...version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2366.3)
That last bit on the end is an llvm tag version and should do the trick for what you're looking for. They generally refer to the tags at http://llvm.org/svn/llvm-project/llvm/tags/Apple.
-Jim
On Oct 4, 2010, at 4:50 PM, Robb Kistler wrote:
> I'd like to know if there is a way to find out which llvm version a given version of llvm-gcc is using for code generation.
>
> Specifically, I'm working with Xcode 3.2.5's arm-apple-darwin10-llvm-g++-4.2
>
> Calling it with --version and --verbose don't g...
2011 Mar 08
1
Sorting
...2501.6 121.1 19.5 0.0 High Smoker
6 39 Male 21.99912 1951.4 109.1 4.7 0.0 Normal Smoker
To get an output like this.
retlevel Normal High
Smoking 2 2
Non-smoker 1 1
Thank you very much for your help.
--
Whitney Kistler M.S.
Ph.D. Student
Warnell School of Forestry and Natural Resources
Southeastern Cooperative Wildlife Disease Study
University of Georgia
Athens, GA 30602
wkistler@uga.edu
cell:724-309-5298
[[alternative HTML version deleted]]
2010 Mar 12
0
[LLVMdev] large modules, PPC on OS X, "ld: 32-bit pic-base out of range in"
On Mar 11, 2010, at 5:47 PM, Robb Kistler wrote:
> I'm trying to build a very large shared library (bundle) for PPC on Mac OS X 10.5. The build looks something like this, where mybundlebitcode.o is the large object
>
> llc -relocation-model=pic -o=mybundle.s mybundlebitcode.o
> gcc -arch ppc -c -x assembler -o mybundle....
2010 Mar 12
2
[LLVMdev] large modules, PPC on OS X, "ld: 32-bit pic-base out of range in"
I'm trying to build a very large shared library (bundle) for PPC on Mac OS X 10.5. The build looks something like this, where mybundlebitcode.o is the large object
llc -relocation-model=pic -o=mybundle.s mybundlebitcode.o
gcc -arch ppc -c -x assembler -o mybundle.o mybundle.s
g++ -o mybundle.bundle -bundle mybundle.o -lotherlibrary
I get the following error:
ld: 32-bit pic-base out of
2010 Mar 12
1
[LLVMdev] large modules, PPC on OS X, "ld: 32-bit pic-base out of range in"
On Mar 11, 2010, at 6:07 PM, Chris Lattner wrote:
> On Mar 11, 2010, at 5:47 PM, Robb Kistler wrote:
>
>> I'm trying to build a very large shared library (bundle) for PPC on
>> Mac OS X 10.5. The build looks something like this, where
>> mybundlebitcode.o is the large object
>>
>> llc -relocation-model=pic -o=mybundle.s mybundlebitcode.o
>> gc...
2010 Aug 05
1
[LLVMdev] x86 Vector Shuffle Patterns
On Thu, Aug 5, 2010 at 3:11 PM, David A. Greene <greened at obbligato.org> wrote:
> David Greene <dag at cray.com> writes:
>
>> I'm asking because I'm having some trouble converting some AVX patterns
>> over to the new system. I'm getting this error from tblgen:
>>
>> VyPERM2F128PDirrmi: (set:isVoid VR256:v4i64:$dst, (vector_shuffle:v4i64
2010 May 08
1
[LLVMdev] Question about maturity of various ARM instruction sets in llvm 2.6
Thanks in advance,
Are all of the ARM instruction sets that can be specified with -mattr stable? I'm specifically interested in -mattr=+v5te. I'm attempting to build a cross-compiling llvm-gcc to build for Android. The Android native toolchain builds for ARMv5te.
--Robb