The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
299 views

Compiling LLVM 2.9's gcc 4.2 on kernel 3.0 with gcc 4.6

I'm trying to get llvm-gcc 4.2.2.9 to compile on this x86_64 system which runs the 3.0.0-21-generic kernel. llvm 2.9 itself builds fine. I suspected the downloadable version of llvm-gcc was causing ...
2
votes
1answer
581 views

gcc44-c++ Support Required

I recently downloaded code as mentioned in http://clang.llvm.org/get_started.html link. My GCC version is 4.1.2. The compilation went fine for at least an hour before the below error started to occur ...
0
votes
2answers
680 views

Cannot install python module: command '/usr/bin/llvm-gcc' failed with exit status 1

Can someone help me with that issue, I have found many post reporting the same error but no solution worked for me. I got the same error with multiple modules. I am setting up os X 10.7. I have Xcode ...
0
votes
1answer
748 views

Using LLVM gcc 4.2 for core-plot causing notation problems because of ARC

I am trying to install core-plot into my iPhone project following these directions. Coreplot requires that I use the LLVM gcc 4.2 compiler, and this is causing notation problems. Because I am ...
0
votes
1answer
456 views

GL_COLOR_BUFFER_BIT and many more show "undeclared identifier by Xcode

I am trying run Apple documentation sample code, placed on this link... Sample Code However when I run this code XCode fails to compile. It shows several error stating that below listed variables ...
3
votes
3answers
182 views

Why does GCC add assembly commands to my inline assembly?

I'm using Apple's llvm-gcc to compile some code with inline assembly. I wrote what I want it to do, but it adds extraneous commands that keep writing variables to memory. Why is it doing this and how ...
1
vote
4answers
559 views

C - Compiling with -Wall doesn't warn about uninitialized variables

I have an example flawed program that should give exactly one warning about an uninitialized variable, but when I compile it gcc doesn't give me any warnings. Here is the code: #include ...
1
vote
1answer
137 views

What is “system-supplied DSO” that gdb references?

I'm running gdb with set verbose on and I'm trying to understand one of the messages I am getting: Reading symbols from system-supplied DSO at 0x7ffff7ffb000...(no debugging symbols found)...done. ...
4
votes
2answers
3k views

llvm-gcc missing on Mac OS X Lion: can not install mysql-python

I recently upgraded to Mac OS X 10.7 from 10.6. I decided to use Python 2.7. But when I'm trying to install the MySQLdb module to run Django, it fails: $ sudo pip install MySQL-python ...
0
votes
1answer
891 views

IOS: Library not found for -lz.1.2.3

I don't understand my error: Ld Library/Developer/Xcode/DerivedData/Test-aywxyvnakaqhmwfbwellynwqmoik/Build/Products/Debug-iphonesimulator/Test.app/Test normal i386 cd /Users/lol/Desktop/Test ...
1
vote
2answers
4k views

Optimization levels in LLVM and Clang

I am working on a project that I had been compiling with LLVM 2.6 and the llvm-gcc front end. I'm trying to test compiling it with LLVM 3.1 and clang. When I did this I got the following error ...
1
vote
1answer
2k views

“GCC could not be found” while installing Fontforge on os x

Just want to install Fontforge on mac os x, and firstly tried: brew install fontforge but got Error: Failed executing: make (fontforge.rb:38) and then tried brew install fontforge --use-clang but ...
0
votes
1answer
262 views

Execute Openmp program in LLVM-3.0

I generated a .ll file using llvm-gcc for a Openmp program(written in c). Then Optimized using opt(version 3.0) But when I try to execute the optimized .ll file using lli or llvm-ld, getting the ...
0
votes
2answers
258 views

On OSX, why does /usr/bin/cpp not support stringification of macro arguments while gcc -E and clang -E do?

If I have the following code in foo.c #define P(x) printf("%s\n", #x) void main() { P(3 == 4); } Invoking gcc -E foo.c will output: int main() { printf("%s\n", "3 == 4"); } Notice that the ...
1
vote
2answers
1k views

how to install Cython on lion

I'm trying to install cython on lion but this is what I get: $ export CC=gcc-4.2 $ gcc --version i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00) ...
5
votes
2answers
4k views

How to remove the OSX-GCC-Installer?

Just a couple of days ago I discovered and used Kenneth Reitz's OSX-GCC-Installer to solve the issue of installing Ruby 1.9.3 via RVM on my Mac. Today I read on Kenneth's blog about the Command Line ...
0
votes
1answer
109 views

Warning when using anonymous structures in a 4D matrix type

I'm trying to define a 4-d matrix type in C (for use in the iOS/ObjC environment) that is encapsulated (so not a bare array), and that can be accessed using indexed values or via named struct members. ...
9
votes
2answers
2k views

Error when trying to install pylibmc on Mac OSX Lion

I've tried pip and easy_install, but I keep getting the following error: error: command '/usr/bin/llvm-gcc' failed with exit status 1 I'm running OSX Lion and the install runs inside a virtualenv, ...
0
votes
1answer
406 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
894 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. ...
1
vote
1answer
263 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 ...
5
votes
2answers
721 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
810 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 ...
3
votes
1answer
257 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 ...
3
votes
2answers
1k 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
108 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 ...
5
votes
2answers
182 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 ...
4
votes
1answer
498 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 ...
0
votes
1answer
273 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
165 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
629 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
281 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 ...
1
vote
3answers
302 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 ...
1
vote
1answer
2k 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 ...
7
votes
3answers
2k 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 ...
-3
votes
1answer
266 views

C++ template working fine for GCC but showing compile time error in LLVM-GCC compiler

typedef char TCHAR; template <class T> class MyTemplateString { }; template <class T> class MyList { }; typedef MyTemplateString<TCHAR> MyString; MyList<MyString> ...
1
vote
2answers
152 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
498 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 ...
2
votes
2answers
277 views

Strange assignment error

Why this works: - (void) setupInteraction:(IBITSInteraction*)interaction withInfo:(NSDictionary*)info { CGRect rect = ([info objectForKey:kInteractionFrameKey] ? CGRectFromString([info ...
0
votes
1answer
980 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 ...
2
votes
0answers
185 views

Redefinition of 'struct __block_literal_1' in Obj-C

I've been working around this problem for a while now and it's really driving me insane. Whenever I declare a block, I get a compile error in Xcode 4.1 compiling with LLVM GCC 4.2: Redefinition of ...
0
votes
1answer
73 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
68 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
57 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 ...
2
votes
2answers
492 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 ...
3
votes
1answer
274 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?
5
votes
2answers
510 views

-[NSDate timeIntervalSinceDate:] 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
466 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
241 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 ...