similar to: [LLVMdev] Build failure: on Linux /x86

Displaying 5 results from an estimated 5 matches similar to: "[LLVMdev] Build failure: on Linux /x86"

2008 Apr 15
0
[LLVMdev] Build failure: on Linux /x86
Hi, > I downloaded llvm2.2 and got over with previous issue. Now a new error is > being shown: > > APInt.cpp:2017: instantiated from here > /home/guest/gcc4.3.0/install_gcc_4.3.0/lib/gcc/i686-pc-linux-gnu/4.3.0/../../../../include/c++/4.3.0/bits/ostream_insert.h:51: > error: invalid use of incomplete type âstruct std::basic_ostream<char, > std::char_traits<char>
2008 Feb 05
0
olpc theora-svn testing
Hi, I have done a simple libtheora test for the theora ticket (http://dev.laptop.org/attachment/ticket/5988/), using theora-svn. The results are at: http://wiki.laptop.org/go/Theora#Testing For the sake of discussion here, 've copied some comments from the results section on the wiki: - the patch for super fastmode seems to give an impressive speedup. Depending on video input, encoding time
2007 May 29
1
Is is possible to use the latest changeset and old linux kernel?
Hi, I tried to use the latest changeset of xen-unstable with an old linux kernel (2.6.16.33), because some of my codes are developed based on that Linux version. It seems that 2.6.18 changes quite a bit interfaces from 2.6.16.33. I set the "LINUX_VER = 2.6.16.33" in the file "buildconfigs/mk.linux-2.6-xen". When I did "make world", the xen builder did
2016 Feb 10
5
Question about an error we're now starting to get on LLVM 3.8.0rc2since
+llvm-dev > On 2016-Feb-09, at 12:54, Harris, Kevin <Kevin.Harris at unisys.com> wrote: > > Duncan, > Kevin Harris here, from Unisys. In our application, generating LLVM IR, we have several instances of code that looks like this: > > . . . > Value* pDS; > . . . > auto argIt = pFunc->arg_begin(); >
2008 Sep 29
1
[LLVMdev] llvm-gcc : why no optimization?
Hi all, I am a newbie to LLVM and tried experimenting compile a small C program with it. This is what I did: 1. Wrote a simple C program with some dead code. 2. compiled it with llvm-gcc. [$ llvm-gcc -emit-llvm -S deadc.c] 3. Fetched it to assembler. [$ llvm-as deadc.s] 4. [$ opt -analyze -ade deadc.s.bc] [Ran without -analyze switch also: $opt -o final_opt -verify-each -globaldce -f deadc.s]