The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
472 views

Getting LLVM error when building to device but not in simulator

When I attempt to build my test target to either my iPad1 (4.3.5) or iPhone4 (4.3.5) I'm getting the following error from Xcode 4 (Build 4A304a): Internal compiler error: tree check: expected tree ...
0
votes
2answers
244 views

llvm-gcc Error:Incompatible plugin

I am new to llvm.When I try to compile c programs using llvm-gcc i get following error: $ llvm-gcc test.c Incompatible plugin version cc1: error: Fail to initialize plugin ...
0
votes
1answer
3k views

clang: error: linker command failed with exit code 1 (use -v to see invocation)

I am new to LLVM. I am using Clang 3.0 to execute c programs. I am using mandriva spring 2010. GCC version 4.4.1 is installed in the system. I used the following link to install LLVM. svn co ...
2
votes
1answer
460 views

Compilation issue when using blocks with LLVM GCC 4.2

I wrote a gist a while ago: https://gist.github.com/611157. It compiled and worked ok. I came back to it recently and it no longer complied. I noticed it compiles with LLVM 2.0 with no problems or ...
3
votes
4answers
1k views

No such file or directory after removing a duplicate subdirectory

My app was building and running fine on the simulator and device, but I noticed that for some reason, I had a duplicate directory within my main directory, and some duplicate files as well. So while ...
3
votes
1answer
790 views

Internal compiler error: Bus error with LLVM GCC 4.2 compiler

When I am trying to test my application on device with default compiler setting, LLVM GCC 4.2, its giving me "Internal compiler error: Bus error", but it is working OK with GCC 4.2 and LLVM compiler ...
0
votes
2answers
341 views

LLVM GCC 4.2 EXC_BAD_ACCESS

Below code runs just fine on GCC 4.2 but fails with EXC_BAD_ACCESS in LLVM GCC 4.2 - (double_t)readDouble { double_t *dt = (double_t *)(buffer+offset); double_t ret = *dt; // Program ...
1
vote
1answer
3k views

Build throwing error “Command … llvm-gcc-4.2 failed with exit code 1”

Here's the log from the build. This is a brand new project in Xcode 4, so the only non-regular things in it are as follows: A .c file A .a library A bunch of header files I've been playing with ...
0
votes
1answer
539 views

Why XCode 4.0 Compiler Doesn't Report Line Numbers On Errors?

So, I'm trying to create a cross platform project by having a projects directory for my multiple platforms and a source directory where I will be keeping all of my source files used by the multiple ...
0
votes
1answer
959 views

How to I make an iPad app compile on a device using LLVM GCC?

I have my application set up to use the LLVM GCC 4.2 in Target>Build Settings under Compiler Version and it worked for the simulator. When I switched my "Scheme" to target an iPad, it threw the same ...
1
vote
1answer
336 views

Map between LLVM IR instruction and line of source

How can i store the map between LLVM IR instruction and line of source code if llvm-gcc or dragonegg are used?
1
vote
2answers
346 views

Tool for gcc GIMPLE modification?

I need to add to gcc support of an OpenMP-like (directive) language. I know it is possible to dump GIMPLE code and then "undump" it and continue compilation. I want to modify the dumped DIMPLE to add ...
1
vote
1answer
486 views

Calling LLVM bitcode function in LLVM 2.8

I'm trying to read and call a function parsed from LLVM bitcode in LLVM 2.8. I have everything working apart from the actual call, which crashes the program. First I have this C code: void hello() ...
2
votes
3answers
479 views

llvm-gcc std::allocator bug?

The code: #include <vector> #include <stack> using namespace std; class blub {}; class intvec : public std::vector<int, std::allocator<int> >, public blub {}; int main() { ...
1
vote
1answer
196 views

configure: error: Building in the source directory is not supported in this release

I am trying to build the iPhone toolchain under Ubuntu 10.04 and I encountered an error: mohit@mohit-laptop:~/Documents/toolchain/iphone-dev/llvm-gcc-4.0-iphone$ ./configure ...
10
votes
5answers
2k views

Are llvm-gcc and clang binary compatible with gcc? - particularly mingw gcc on Windows

If I build a static library with llvm-gcc, then link it with a program compiled using mingw gcc, will the result work? The same for other combinations of llvm-gcc, clang and normal gcc. I'm ...
3
votes
1answer
642 views

LLVM: bitcode with llvm-gcc (mingw) for windows

i'm currently building a small JIT compiler. For the language I need a runtime library for some special math functions. I think the best would be to compile the lib to bitcode and link it. The ...
1
vote
1answer
2k views

problem with link-time optimization in Xcode

Should I turn on "Generate Debug Symbols" in Xcode for release configuration? When it and "Link Time Optimization" are turned on Xcode show warning: GenerateDSYMFile ...
0
votes
2answers
1k views

GCC Undefined symbols

I recently ditched MacPorts for Homebrew, as a result im now experiencing some issues with make. Namely this error: /Developer/usr/bin/llvm-gcc -rdynamic -o zsh main.o `cat stamp-modobjs` ...
3
votes
4answers
3k views

LLVM MinGW installation on Vista?

From llvm.org I've downloaded llvm-2.6-x86-mingw32.tar.bz2 into c:\llvm and llvm-gcc-4.2-2.6-x86-mingw32-tar.bz2 into c:\llvm-gcc as well as setup a desktop shortcut the following batch file in ...
0
votes
1answer
545 views

Changing to llvm compiler when deploying iPhone app

I found this: http://stackoverflow.com/questions/1412882/changing-compiler-to-llvm-clang-on-existing-iphone-project But that does not help. I am still getting the error. Setting the BaseSDK to the ...
8
votes
3answers
5k views

Build 32-bit with 64-bit llvm-gcc

I have a 64-bit version of llvm-gcc, but I want to be able to build both 32-bit and 64-bit binaries. Is there a flag for this? I tried passing -m32 (which works on the regular gcc), but I get an error ...

1 2 3