The llvm-gcc tag has no wiki summary.
0
votes
2answers
23 views
XCode Undefined Reference
I have compiled a static library via the command line using llvm-g++-4.2. When I attempt to link against that library and build an app within XCode, I get this:
Undefined symbols for architecture ...
-1
votes
2answers
33 views
Indirection operator on const_iterator error
This code
std::ostream& operator<<( std::ostream& output, const Array& a) {
if (a.empty()) {
output << Structural::BEGIN_ARRAY << Structural::END_ARRAY;
...
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 ...
1
vote
1answer
70 views
Link Mosquitto with gcc on OSX
I am new to Mosquitto and I am tying to write a simple C client connecting to Mosquitto's test server: http://test.mosquitto.org/
Here is the code of the simple C client which is 99.9% of an example ...
0
votes
0answers
35 views
I am getting “llvm-config: error: components given, but unused” error while compiling FunctionInfo.cpp Makefile?
I am beginner with LLVM compiler. I am making a FunctionInfo pass for my compiler.
for compiling this FunctionInfo.cpp we need to compile makefile but i am getting an error.
Like this "llvm-config: ...
1
vote
1answer
120 views
LLVM : inject debugging lines in C++ source code
I have downloaded LLVM 3.1 and build it successfully. My requirement is to add some few debugging lines in a C++ source code files. I have coded module using CLANG 3.1. But CLANG reports a lot of AST ...
0
votes
2answers
88 views
LLVM equivalent of gcc -D macro definition on commandline
I am looking for LLVM (or clang) equivalent of gcc's -D flag which enables macro definition at commandline.
Any pointers would be great.
3
votes
3answers
740 views
What's going on in Apple LLVM-gcc x86 assembly?
I'm interested in learning more x86/x86_64 assembly. Alas, I am on a Mac. No problem, right?
$ gcc --version
i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build
5658) (LLVM build ...
0
votes
2answers
136 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 ...
1
vote
0answers
66 views
KLEE WARNINGS and no inputs generated
I am new in KLEE.
I had installed klee, followed the instructions correctly.
if i run program from tutorial:
int get_sign(int x) {
if (x == 0)
return 0;
if (x < 0)
return -1;
else
...
1
vote
1answer
107 views
Xcode 4.5 project warning - “Upgrade Compiler configuration to LLVM”
I moved a project originally coded in XCode 4.2 to XCode 4.5 and now I am getting the following warning when i build -
The compiler configuration is set to 'com.apple.compilers.llvmgcc42'. This ...
0
votes
0answers
27 views
Instruction cache misses using LLVM
I am trying to analyze the instruction cache miss rate in different basic blocks, and would like to know if there is any way to do this in LLVM.
I am using the objdump file to find the size of ...
1
vote
0answers
54 views
linker error on the llvm gcc compiler for the simulator only
We are in the process of moving our project from LLVM GCC to Apple LLVM. One of the libraries we have is built only for arm and not i386. This is causing issues where we get the warning on the ...
0
votes
1answer
119 views
Linking in llvm
I am profiling a few files in Spec2K6 benchmark with a profiler written in LLVM, and cannot understand what is the correct way to link multiple .bc files.
For example, the benchmark has concat.c, ...
0
votes
1answer
157 views
SDL 1.3 on Mac OSX Mountain Lion Build Error
I need to use SDL 1.3 for a project I want to start working on but I am having issues compiling it. Here is the terminal output: http://pastebin.com/Ucq6fkfj
I previously got the same problem as ...
1
vote
0answers
72 views
Integrating LLVM-GCC with eclipse
I'm currently doing some development on the llvm-gcc compiler, using llvm-gcc-4.2-2.0 front-end and the llvm-2.9 back-end. For about seven months I've been doing the development using text viewers, ...
2
votes
1answer
102 views
Does specifying parameters or variables as __attribute__ ((unused)) allow the compiler to perform any additional optimizations?
I'm particularly curious about LLVM 4.1, but would be interested in other compilers' behavior as well.
According to the GCC documentation (which LLVM supports at least in part), the unused attribute ...
1
vote
2answers
113 views
C++ Standard Library found in .mm files but not in the .h (Xcode 4.5 LLVM GCC 4.2)
I'm trying to use std::vector in a iOS6.0 application developped in Xcode 4.5 compiled with LLVM GCC 4.2 and I renamed with the .mm extension the files I'm using C++ in. But for some reason, the ...
1
vote
0answers
45 views
gcc g++ intermediate assembly error
Occasionally, I try to compile some code but g++ seems to create bad temporary assembly along the lines of:
$ g++ -m32 -o foobar foo.cc bar.cc -O2 -lm -Wall
...
0
votes
2answers
209 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
1answer
140 views
How to get variable definition line number etc. using dbg metadata?
As far as I know, when I need to get the line number of a local variable I had to look for the invocation of the llvm.dbg.declare intrinsics and get the dbg metadata(since AllocaInst itself does not ...
0
votes
3answers
403 views
Installing scikit: gcc-4.2 not found, using Clang instead
When trying to install scikit on my Mac (OS X Lion) I stumbled upon this error:
gcc-4.2 not found, using clang instead.
I searched how to fix this and it seems that the environment variable CC ...
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 ...
3
votes
1answer
164 views
i have an error when executing “from lxml import etree” in the python command line after successfully installed lxml by pip
bash-3.2$ pip install lxml-2.3.5.tgz
Unpacking ./lxml-2.3.5.tgz
Running setup.py egg_info for package from file:///Users/apple/workspace/pythonhome/misc/lxml-2.3.5.tgz
Building ...
0
votes
1answer
74 views
when i install lxml on my mac, “gcc-4.2 not found, using clang instead” shown in the installation process
when i install lxml on my mac, "gcc-4.2 not found, using clang instead" shown in the installation process.
I just type in the following command, and get the above anwser, how can i specify gcc-4.2 ...
1
vote
1answer
92 views
Using gold in the place of ld as a system linker on fedora
I want to use gold as my system linker instead of ld as ld doesn't support -fPIC and -shared.
I followed this particular url to do so,
gold-plugin
As per the documentation,
I ran gcc -v filename.c to ...
0
votes
1answer
525 views
LLVM-GCC ASM to LLVM in XCode
I got the 2 following definition that compile (and work) just fine using XCode LLVM-GCC compiler:
#define SAVE_STACK(v)__asm { mov v, ESP }
#define RESTORE_STACK __asm {sub ESP, s }
However when I ...
2
votes
1answer
547 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 ...
1
vote
1answer
116 views
How resolve error:Conflicting type for “snprintf”
In my app i used Compiler for C/C++/Objective-C is Apple LLVM compiler 4.1 for simulator.
For simulator this is working. When i compiling same code for Device i changed Compiler for C/C++/Objective-C ...
0
votes
2answers
678 views
ld can't map file errno=22 for architecture armv7
When command line building a project for iPhone (iOS) I get the following error:
ld can't map file errno=22 for architecture armv7
However, when checking libraries and objects via lipo - info ...
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
84 views
klee with loops strange behaviour with similar code
I have a question about how is working KLEE (symbolic execution tool) in case of loops with symbolic parameters:
int loop(int data) {
int i, result=0;
for (i=0;i<data ;i++){
result+= ...
1
vote
1answer
148 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 ...
0
votes
0answers
82 views
where is llvm-gcc's plugin installed?
I'm new to llvm-gcc
I'm now using llvm-gcc 4.2, which I compiled from source, and "make install"ed to /usr/local/bin
I'v followed this link:http://llvm.org/docs/GoldPlugin.html
compiled LLVMgold.so ...
0
votes
0answers
574 views
ignoring file …libgcc.a, file was built for archive which is not the architecture being linked (x86_64)
Basically, I want to run a .cpp and link several .a files and gcc,fortran. The command is as
g++ -L/Users/myhome/Ipopt-3.10.0/build/lib -lipopt -L/Users/myhome/lcoinmumps -lpthread -framework ...
4
votes
1answer
377 views
How can I use AES-NI intrinsics on a Mac?
I'm trying to compile a C application on a Mac. I use SSE4 and AES-NI intrinsics.
In Linux, I just call gcc with the -msse4 and -maes flags and include the wmmintrin.h header and I can call SSE ...
2
votes
3answers
1k views
xcode 4.5, iOS 6.0 SDK Compile error - base.h
I upgraded from xcode 4.4.3 to 4.5 and can no longer build our application. I receive the following compile error in iOS 6.0 SDK base.h:
...
1
vote
0answers
34 views
Gcc Eclipse checking
I use eclipse for C/C++ programming on a macOS Lion. Recently I've installed the new gcc version, gcc-mp-4.7, with macPorts. Then I have substituted this new version with the older one, the default ...
4
votes
2answers
844 views
Java 1.6 Segmentation fault 11 (OSX 10.7.4)
I have .jar file which during runtime reads one .dylib library which I compiled in OSX with GCC compiler.
Application runs without any problems on OSX 10.6.8.
Java version:
java version ...
0
votes
1answer
450 views
How do I get GCC to compile object files correctly without “file was built for unsupported file format”?
I get this error when compiling:
ld: warning: ignoring file /Users/matt/Programming/BitEagle_Projects/cbitcoin/build/obj/CBNetworkFunctions.o, file was built for unsupported file format ( 0x7f 0x45 ...
0
votes
0answers
175 views
Problems compiling python C extension with gcc
I'm having real trouble trying to install rdiff-backup but as well would like to know of how to go about solving this kind of problem on my own, as this isn't the first time I've had problems ...
1
vote
0answers
123 views
Apple gcc: What is the difference between /usr/bin/gcc-4.2 and /usr/bin/i686-apple-darwin11-llvm-gcc-4.2?
I'm running Lion. I have these two versions of gcc that both claim to be the same thing, but diff claims that the binaries differ. I am trying to understand the situation with gcc on OS X. What is the ...
1
vote
1answer
406 views
Xcode 4.1.1 Crashes with Phonegap 2.0.0 and BarcodeScanner Plugin
Upon "Adding Files to Project ..." within Xcode that are either .mm or .cpp, Xcode pauses then crashes.
I have Xcode 4.4.1 installed with Phonegap 2.0.0 properly setup. I am using the Phonegap ...
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
2answers
372 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 ...
1
vote
0answers
411 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 ...
2
votes
0answers
494 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 ...
0
votes
0answers
230 views
compiling opencl program in llvm [closed]
Can llvm compile any opencl program c and c++ ?
I am using intel CPU.
if yes can you tell me the compilation steps/commands ?
With Thanks,
Barun
2
votes
2answers
283 views
Basic source-to-source transformation with Clang
I have successfully build the sample code
Now my I have a requirement that if I have a sample code like below:
int inc(int& p)
{
p++;
printf("In inc [%d]\n", p);
return ...
2
votes
0answers
399 views
Compiler-RT CLANG LLVM
I have GCC 4.1.2 and like to build CLANG / LLVM using this GCC compiler version ony. I need source to source translation library so that I can modify my existing source code for some requirement.
...

