0
votes
1answer
33 views

Should I care about Compiler when I have created Library/Framework of my Project and running on Different Compiler?

I have created iOS Library/Framework (static) of my project using LLVM GCC compiler with NON-ARC build. Now I want to use this Library in my newer projects with Apple LLVM Compiler with ARC ...
0
votes
2answers
135 views

Can GCC compiler compile both Objective-C and C code?

I have the source code for a video decoder which is written in C. The code was successfully compiled and executed on MAC terminal (which uses GCC compiler). Now I'm trying to create an application on ...
0
votes
2answers
207 views

GCC / LLVM compilation optimization on casts?

I'm writting a series of anonymous functions for an objective-C project (i.e. these functions are not class specific / implementation is hidden) and I came across an interesting issue... I have a ...
0
votes
0answers
60 views

Why does this code crash when compiled with Apple LLVM, but not in LLVM/GCC?

I'm trying to get this code: http://code.google.com/p/switchcontrol/source/browse/trunk/code/AFSwitchControl.m compiling under Apple LLVM in Xcode 4.5.2. It works when compiled with LLCM GCC, but ...
1
vote
2answers
370 views

__block attribute on property declarations

I have to fix some existing code that builds just fine with LLVM (on iOS) so that it builds with llvm-gcc-4.2 too. I'm done with pretty much everything, except this pattern which is found at a few ...
2
votes
0answers
486 views

XCode LLVM+GCC 4.2 - Generate Debug Symbols

I'm having a library project, I've always had "Strip Debug Symbols" turned ON for release builds I recently noticed the "Generate Debug Symbols" flag. When I set "Generate Debug Symbols" flag to NO ...
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 ...
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 ...
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 ...
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 ...
2
votes
1answer
453 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 ...
0
votes
2answers
338 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
524 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 ...