Tagged Questions
The llvm-gcc tag has no wiki summary.
7
votes
3answers
763 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 ...
5
votes
0answers
60 views
Impact of using LLVM-GCC to resolve issues on 2nd generation device running iOS 4.2.1
I have an app that uses touch events to draw on the screen. I use UITouch locationInView to return the CGPoint of the touch. The problem is that the x and y coordinates are always the same — BUT only ...
5
votes
3answers
841 views
Xcode 4.2 Code Coverage
I started to use Xcode 4.2 and i have problems with generating code coverage.
Xcode 4.2 does not include the GCC 4.2 compiler, but it was replaced with the LLVM GCC 4.2 compiler.
The first one was ...
5
votes
1answer
192 views
-[NSDate timeIntervalSinceNow] returns very small number on GCC 4.2, but works as expected on LLVM-GCC 4.2 on iOS4.3 Simulator
On iOS 4.3 Simulator, the following code returns a very small number: 1e-700 on GCC 4.2, but works as expected on LLVM-GCC 4.2. Any ideas?
NSDate *selectedDate = self.datepicker.date; // guaranteed ...
4
votes
1answer
210 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 ...
3
votes
1answer
90 views
What is required to generate code coverage data using XCode 4
I have been trying to generate code coverage data for my application on XCode 4.2.1 (build 4D502) using the steps outlined at http://code.google.com/p/coverstory/wiki/UsingCoverstory
I am obviously ...
3
votes
0answers
572 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 ...
3
votes
1answer
484 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 ...
3
votes
4answers
2k 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 ...
3
votes
3answers
3k 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 ...
2
votes
1answer
62 views
llvm-g++-4.2 and C++ new-style type casting
I'm facing a weird problem. I looked around all over stackoverflow.com and elsewhere, but I didn't find an answer.
Here's some background: I'm writing a simple library; mostly for educational ...
2
votes
2answers
144 views
Strange assignment error
Why this works:
- (void) setupInteraction:(IBITSInteraction*)interaction withInfo:(NSDictionary*)info
{
CGRect rect = ([info objectForKey:kInteractionFrameKey] ? CGRectFromString([info ...
2
votes
1answer
143 views
Is there a way to disable #warning in LLVM GCC 4.2 from causing a warning in certain Targets
I'm looking for a compliler flag to disable the GCC #warning directive in Debug targets but not release targets. Does anyone know of a way to do this?
2
votes
1answer
202 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 ...
2
votes
3answers
380 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
2answers
54 views
Why does the pip installer expect gcc-4.2 to be the name of the gcc compiler in OS X Lion?
When installing packages in Python using pip, I came across the following error:
unable to execute gcc-4.2: No such file or directory
Clearly, pip is trying to use gcc-4.2 which is not in any of ...
1
vote
1answer
85 views
LLVM on Mac OS X Lion
I am trying to make LLVM to work on my Mac. I want to write cpp code and generate LLVM IR.
I have installed llvm-gcc42 and all the dependencies using MacPorts:
expat @2.0.1_1 (active)
gettext ...
1
vote
2answers
130 views
How to hint types when compiling with llvm-gcc?
In some C code, I'm defining a simple static array as a function argument, say:
void foo(float color[3]);
When I compile it with llvm-gcc, it produces the following LLVM assembly language output:
...
1
vote
1answer
133 views
Cython & Hadoopy compiling error.. any ideas on a fix?
I'm trying to run Hadoopy, but am getting a compiling error on OS X:
ImportError: Building module failed: ["CompileError: command 'llvm-gcc-4.2' failed with exit status 1\n"
I have ...
1
vote
4answers
228 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 ...
1
vote
2answers
178 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
285 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() ...
1
vote
1answer
1k 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
1answer
27 views
Compilation errors while trying to link LLVM library
I am trying to use some LLVM API in my C++ code, and I end up getting linker errors. I am working on Apple MacOSX Lion. Using g++ for the compile. It is the CreateGlobalStringPtr which is throwing the ...
0
votes
2answers
61 views
Building Ruby 1.9.3 on Lion with Xcode 4.2 using ./configure --with-gcc=clang
My environment: Mac OS X v10.7.2 with Xcode 4.2.1
I am trying to build ruby 1.9.3 on Lion with Xcode 4.2.1. I understand there's an issue with the llvm-based gcc compiler that comes with Xcode 4.2.1. ...
0
votes
0answers
33 views
Strange compilation of inline assembly in LLVM GCC 4.2
I'm trying to optimize the following C macro:
rotate(v0, v1) a0 = v0, b0 = v1, v0 = a0*c - b0*s, v1 = a0*s + b0*c
where all variables are doubles for the Cortex-A8 processor.
The inline assembly ...
0
votes
2answers
118 views
No code coverage with Mac OS X Lion and XCode 4 / llvm-g++-4.2
Other people have reported not being able to generate code coverage with XCode 4, but I find not only can I not do it from within XCode 4, I can't do it even with a simple toy program from the command ...
0
votes
1answer
31 views
Malformed metadata for architecture i386 - LLVM error
I am getting an extremely frustrating error from the compiler in one of my projects. After changing a few compiler settings for optimization, things were working beautifully, until I tried to test on ...
0
votes
1answer
89 views
iPod Touch 2nd no response to Run in xcode4.2
Googled for few hours and I got no answers.
There is my steps:
1 create a new project without ARC in xcode4.2
2 add armv6 to a architectures. it shows: armv6 $(ARCHS_STANDARD_32_BIT)
3 change iOS ...
0
votes
1answer
50 views
How to specify high/low part of double word operand with llvm-gcc inline assembly?
In GCC4.2(Xcode3), I use %R0/%Q0 to specify the high/low part of double word operand in inline assembly. But the following code generates error in llvm-gcc (Xcode4):
error: invalid operand in ...
0
votes
1answer
95 views
Template and Forward declaration in Apple LLVM 3.0
I am working on an application(contains 3 projects, 2 in c++ and one in Objective-C) which compiles perfectly for LLVM GCC compiler. But when I switch the compiler to 'Apple LLVM compiler 3.0' I found ...
0
votes
2answers
107 views
Possible OpenMP + SSE bug when using _mm_shuffle_ps in Xcode 4 (LLVM GCC)
I have switched my compiler to LLVM GCC 4.2 in XCode 4.2 from GCC and have run into a strange linker error for the _mm_shuffle_ps intrinsic under OpenMP. This function will works else where but once I ...
0
votes
2answers
92 views
Why my program is receiving SIGABRT when I use OpenMP to make a for loop parallel?
I'm writing a scientific program to solve Maxwell's equation with C++. The task in data parallel and I want to use OpenMP to make the program parallel. But when I use OpenMP to parallelise a for loop ...
0
votes
0answers
97 views
LLVMGCC not able to compile in inline assembly code
#define ROTATE(a,n) ({ register unsigned long ret;\
asm ("rorl %1,%0" \
: "=r"(ret) \
: "I"(n),"0"(a) \
: "cc"); \
ret;\
})
int main (int argc, const char * argv[])
{
register unsigned ...
0
votes
1answer
404 views
Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-g++-4.2 failed with exit code 1
My XCode version is 4.2 for iOS 5.0. I choose "LLVM GCC 4.2" as the compiler. When I compile my project, it show me the following error:
ld: warning: directory not found for option ...
0
votes
0answers
56 views
How to tell Xcode/LLVMGCC that a specific project/target is dependent and should be built?
I have a working Xcode workspace with multiple project. One project links to another project's static library (mylib.a) because it is added to the "Link Binary With Libraries" build phase.
Now I want ...
0
votes
1answer
152 views
xcode - how to change compiler?
I am trying to change the compiler version in xcode 3.1.4. I went to Project settings -> Build -> Compiler version, but I can only choose "com.apple.compilers.llvmgcc42".
I looked up the ...
0
votes
1answer
44 views
How can i verify whether my Code is Vectorized or not?
I am using Automatic Vectorization of compiler to generate the vectorized Code.
For. e.g.
for (i = 0; i < 20; i++)
{
A[i] = i;
}
for (i = 0; i < 20; i++)
...
0
votes
1answer
40 views
Assertion failed: (LHSCst != RHSCst && “Compares not folded above?”)
I'm trying to compile ICU v4.8.1 with Alchemy, but am running into an LLVM problem:
Assertion failed: (LHSCst != RHSCst && "Compares not folded above?"), function visitAnd, file ...
0
votes
1answer
34 views
debugging llvm-ld crash
I am getting an assertion-failure crash in llvm-ld. I'd like to track this back to a line of my code (since maybe there's some squirrely code of mine that's causing this).
Can llvm-ld create a log ...
0
votes
2answers
173 views
linker error Assertion failed: (atom->fixupCount() == 1)
Using Xcode 4.0.2, I have a target that compiles, links, and runs properly in the simulator. However when I compile and link it for an iOS device I get the following (full) linker error:
Ld ...
0
votes
2answers
148 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
1k 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 ...
0
votes
2answers
180 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 ...
0
votes
1answer
2k 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
197 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
567 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 ...
0
votes
1answer
118 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?
0
votes
1answer
125 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 ...
0
votes
2answers
757 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` ...