similar to: [LLVMdev] clang with multiple input .c and .h files

Displaying 20 results from an estimated 30000 matches similar to: "[LLVMdev] clang with multiple input .c and .h files"

2011 Sep 16
3
[LLVMdev] help with an error message using clang ?
Hi, I am new to LLVM and clang and I would like to seek some professional help. :) I have been trying to compile some C code on a linux x86 computer for a Sparc machine. I used: clang -ccc-host-triple sparc-unknown-linux -ccc-clang-archs sparc -pthreads -lm -emit-llvm test.c -c -o -test.bc The following error messages are produced: /usr/include/pthread.h:665:6: error: 'regparm' is
2011 Sep 17
1
[LLVMdev] help with an error message using clang ?
Hi Eli, Thanks for the reply. Indeed there is solaris on the Sparc machine. I was told that it is quite difficult to install LLVM there so I am doing what I am doing. Is there a way for me to get headers from the target Sparc machine without installing LLVM there? Best, Christine On Fri, Sep 16, 2011 at 4:56 PM, Eli Friedman <eli.friedman at gmail.com>wrote: > On Fri, Sep 16, 2011 at
2011 Sep 16
0
[LLVMdev] help with an error message using clang ?
On Fri, Sep 16, 2011 at 4:40 PM, Christine Cheng <clcheng at stanford.edu> wrote: > Hi, > > I am new to LLVM and clang and I would like to seek some professional help. > :) > > I have been trying to compile some C code on a linux x86 computer for a > Sparc machine. > > I used: > >  clang -ccc-host-triple sparc-unknown-linux -ccc-clang-archs sparc -pthreads
2011 Aug 18
3
[LLVMdev] tools to debug human readable llvm assembly bc code?
Hi, I am working with a long llvm bc code in human readable form. I am wondering is there a tool like gdb to help me debug that piece of code? Thanks, Christine -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110818/9ae5dec7/attachment.html>
2011 Sep 15
2
[LLVMdev] problem with sgt's on Sparc machine
Hi Duncan, Thanks for the reply! There is no LLVM on the Sparc machine so I cannot compile my code there into .s file. How shall I modify the target data layout and triple so it works on Sparc? Basically I got these from compiling C code using llvm-gcc. Best, Christine On Thu, Sep 15, 2011 at 10:20 AM, Duncan Sands <baldrick at free.fr> wrote: > Hi, > > > target datalayout =
2011 Sep 15
2
[LLVMdev] problem with sgt's on Sparc machine
Hi guys, Thanks for the input. However, it seems that the code still produces the wrong output on a Sparc machine. My current llvm_print.bc code is: -------------------------------------------------------------------------------------------------- ; MduleID = '<stdin>' target datalayout =
2011 Sep 15
0
[LLVMdev] problem with sgt's on Sparc machine
On Thu, Sep 15, 2011 at 11:06 AM, Christine Cheng <clcheng at stanford.edu> wrote: > Hi Duncan, > > Thanks for the reply! There is no LLVM on the Sparc machine so I cannot > compile my code there into .s file. How shall I modify the target data > layout and triple so it works on Sparc? Basically I got these from compiling > C code using llvm-gcc. You can use clang for
2011 Sep 16
2
[LLVMdev] problem with sgt's on Sparc machine
Hello, What is your LLVM version? Also, can you attach the assembly generated? Thanks, Venkatraman On Thu, Sep 15, 2011 at 5:20 PM, Bruno Cardoso Lopes <bruno.cardoso at gmail.com> wrote: > Hi, > > On Thu, Sep 15, 2011 at 3:15 PM, Christine Cheng <clcheng at stanford.edu> wrote: >> Hi guys, >> >> Thanks for the input. However, it seems that the code
2011 Sep 15
0
[LLVMdev] problem with sgt's on Sparc machine
Hi, On Thu, Sep 15, 2011 at 3:15 PM, Christine Cheng <clcheng at stanford.edu> wrote: > Hi guys, > > Thanks for the input. However, it seems that the code still produces the > wrong output on a Sparc machine. > > My current llvm_print.bc code is: > -------------------------------------------------------------------------------------------------- > ; MduleID =
2011 Sep 21
1
[LLVMdev] question on clang c++ support
Hi, I am new to linux, llvm and clang, so please excuse me if I ask some basic level questions. :) I have some c code with code like below, so it won't compile with clang #include <math.h> #include <pthread.h> #include <sys/time.h> #include <unistd.h> #include <stdlib.h> #include <malloc.h> #include <sched.h> I think that I need to do the following
2011 Aug 18
0
[LLVMdev] tools to debug human readable llvm assembly bc code?
On Aug 18, 2011, at 4:39 PM, Christine Cheng wrote: > Hi, > > I am working with a long llvm bc code in human readable form. I am wondering is there a tool like gdb to help me debug that piece of code? It's not directly executable so no, not really. You could try debugging lli but that's probably pretty painful and is effectively debugging jitted code. You could try to use
2011 Aug 18
1
[LLVMdev] tools to debug human readable llvm assembly bc code?
Hi Eric, Thanks for the reply. I am very new to llvm so could you elaborate more about you meant by 'debugging lli'? Thanks a lot! Christine On Thu, Aug 18, 2011 at 4:47 PM, Eric Christopher <echristo at apple.com>wrote: > > On Aug 18, 2011, at 4:39 PM, Christine Cheng wrote: > > > Hi, > > > > I am working with a long llvm bc code in human readable
2011 Sep 16
0
[LLVMdev] problem with sgt's on Sparc machine
Hi Venkatraman, I am using LLVM 2.8 and llvm-gcc 4.2. The assembly files are attached. In the assembly file, the erroneous result is associated with 'subcc', while the correct ones are associated with 'or'. Thanks a lot! Christine On Fri, Sep 16, 2011 at 2:29 PM, Venkatraman Govindaraju < venkatra at cs.wisc.edu> wrote: > Hello, > > What is your LLVM version?
2011 Dec 20
1
[LLVMdev] striping of stdio information in llvm-gcc and clang
Hi Joerg, How do I find /path/to/sparc/headers/? Many hanks, Christine On Fri, Dec 16, 2011 at 5:50 PM, Linlin Cheng <linlin at caltech.edu> wrote: > Thanks! > > On Thu, Dec 15, 2011 at 10:39 PM, Joerg Sonnenberger > <joerg at britannica.bec.de> wrote: >> On Thu, Dec 15, 2011 at 08:43:01PM -0800, Eli Friedman wrote: >>> clang's cross-compilation
2011 Dec 17
0
[LLVMdev] striping of stdio information in llvm-gcc and clang
Thanks! On Thu, Dec 15, 2011 at 10:39 PM, Joerg Sonnenberger <joerg at britannica.bec.de> wrote: > On Thu, Dec 15, 2011 at 08:43:01PM -0800, Eli Friedman wrote: >> clang's cross-compilation support isn't really mature; you might be >> able to get away with specifying "-ccc-host-triple sparc-sun-solaris >> -nostdinc -I /path/to/sparc/headers/". >
2011 Dec 16
2
[LLVMdev] striping of stdio information in llvm-gcc and clang
On Thu, Dec 15, 2011 at 08:43:01PM -0800, Eli Friedman wrote: > clang's cross-compilation support isn't really mature; you might be > able to get away with specifying "-ccc-host-triple sparc-sun-solaris > -nostdinc -I /path/to/sparc/headers/". Please read that as "clang's cross-compilation support is not magical". It's not a question of maturity that
2008 Jul 18
3
How to cut data elements included in a text line
Hello, assume I have an "unstructured" text line from a connection. Unfortunately, it is in string format: R> x [1] "\talpha0\t-0.638\t0.4043\t0.4043\t-2.215\t-0.5765\t-0.137\t501\t2000" How can I extract the data included in this string object "x" in order to get the elements for the parameter vector called "alpha0", i.e. -0.638 0.4043 0.0467
2009 May 18
2
Overdispersion using repeated measures lmer
Dear All I am trying to do a repeated measures analysis using lmer and have a number of issues. I have non-orthogonal, unbalanced data. Count data was obtained over 10 months for three treatments, which were arranged into 6 blocks. Treatment is not nested in Block but crossed, as I originally designed an orthogonal, balanced experiment but subsequently lost a treatment from 2 blocks. My
2002 Nov 28
4
Mime-Version: 1.0
I am using expression() to incorporate text into graphics. To create a superscript, I use the '^' character. Can someone please tell me the character to use to create a subscript? Thank you ----------------------------------------------------- Christine Donnelly Statistical Consulting Unit The Graduate School John Dedman Mathematical Sciences Building (Bldg 27) Australian National
2003 Jun 04
1
FW: Besoin d'aide au sujet de swat
Can anyone help out Marie-Christine? Thanks PG -----Original Message----- From: Marie-Christine DRACK [mailto:jennifer.drack@wanadoo.fr] Sent: Wednesday, June 04, 2003 8:54 AM To: mkaplan@samba.org; paulg@samba.org Subject: Besoin d'aide au sujet de swat bonjour, je vous ?cris car je n'arrive pas ? me connecter ? swat alors que le fichier est configurer normalement.Voici mon fichier