Tagged Questions
2
votes
1answer
556 views
Difference between i686-apple-darwin11-llvm-gcc-4.2 and llvm-gcc-4.2
looking into /usr/llvm-gcc-4.2/bin I have
544416 Oct 31 17:10 i686-apple-darwin11-llvm-g++-4.2*
544416 Oct 31 17:10 i686-apple-darwin11-llvm-gcc-4.2*
117168 Oct 31 17:10 llvm-c++-4.2*
257552 Oct 31 ...
0
votes
0answers
63 views
How to resolve Error in stdio.h when i changed Compiler C/C++/Objective-C:Apple LLVM compiler 3.1 to LLVM GCC 4.2 in Xcode 4.2.3
I am using stdio.h file in my project.
when i change Compiler C/C++/Objective-C:Apple LLVM compiler 3.1 to LLVM GCC 4.2
i an getting Conflicting types for 'sprintf' This is on Mac OS 10.7.4 & ...
1
vote
1answer
149 views
Why doesn't the compiler allocate and deallocate local var with “sub*” and “add*” on the stack?
According to some textbooks, the compiler will use sub* to allocate memory for local variables.
For example, I write a Hello World program:
int main()
{
puts("hello world");
return 0;
}
I ...
3
votes
2answers
2k views
Difference between LLVM, GCC 4.2 and Apple LLVM compiler 3.1
What are the major differences between LLVM GCC 4.2 and Apple LLVM compiler 3.1?
I'm fairly new to compilers so any help is appreciated. Also I'm especially interested in how the two compilers could ...
1
vote
0answers
417 views
frontend to LLVM-based compiler
I am trying to develop a compiler based on the LLVM infrastructure. My language has a C like syntax and so I would like to leverage existing C compilers. Right now I am focusing on the frontend ...
0
votes
1answer
274 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
2answers
339 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
951 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
2answers
336 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 ...