Tagged Questions
The llvmclang tag has no wiki summary.
11
votes
2answers
2k views
LLVM Clang 2.6 and Xcode 3.2!
So, I've just downloaded the LLVM Clang (2.6) binaries. Mac OS X 10.6 comes with Clang 1.0.Do you know how to integrate a later version of Clang with the Xcode 3.2.x IDE?
Just overwriting files ...
7
votes
2answers
398 views
Instrumenting C/C++ codes using LLVM
I just read about the LLVM project and that it could be used to do static analysis on C/C++ codes using the analyzer Clang which the front end of LLVM. I wanted to know if it is possible to extract ...
7
votes
1answer
911 views
llvm-clang: incremental or online parser?
Is there anyway to use the llvm-clang parser in an incremental/online manner?
Say I'm writing an editor and I want to be able to parse the C++ code I have in front of me.
I don't want to write my ...
7
votes
5answers
6k views
Building iPhone Code using xcodebuild and running LLVM/Clang Static Analyzer
I followed the steps here but i'm unable to run static analyzer on my project:
Finding memory leaks with the LLVM/Clang Static Analyzer
When i try to run xcodebuild on my project (1. Open Terminal, ...
5
votes
3answers
281 views
Handle C++ functions with clang API to insert code
UPDATE2:
I tried to parse another file and this time clang found one RecordDecl. But the file defined one struct and two classes, so I think my clang code parses C instead of C++. Are there any ...
5
votes
4answers
3k views
Using Clang Static Analyzer from within XCode
Since there is no Xcode script variable for "current project directory," how can you create a script menu item to run the Clang Static Analyzer on your current project from Xcode?
4
votes
1answer
132 views
How do I find all memory allocations in an llvm ir code file?
I tried to compile this snippet of C++ code:
void FuncTest() {
int* a = new int;
int* b = new int[2];
}
using:
clang test.cpp -S -emit-llvm -o - > test.llvm
and obtained this:
define ...
3
votes
3answers
227 views
bind two function objects
Building with clang++ -std=c++0x -stdlib=libc++ main.cpp
#include <string>
#include <functional>
using std::bind;
using std::string;
using std::function;
class Service
{
public:
...
3
votes
1answer
75 views
Executable generated with clang++ goes crazy
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<cstdio>
using namespace std;
class Book{
public:
int a;
int b;
};
int main()
{
Book ...
3
votes
2answers
1k views
llvm clang 2.6: “not using the clang compiler for C++ inputs ”
LLVM 2.6 + clang.
Trying to compile C++ file and got:
clang: warning: not using the clang compiler for C++ inputs
How can I start clang in C++ mode?
3
votes
1answer
156 views
-forwardInvocation works with Clang - LLVM but not with GCC
The following code implements an NSProxy subclass which forwards methods to an NSNumber instance.
However when calling [nsproxy floatValue] I get 0.0 under GCC 4.2.
Under LLVM-Clang I get the ...
2
votes
3answers
270 views
Is there any way to add an iVar that's not in the header file(not using LLVM 2.0 or later) in Objective-C?
I recently learned that you can add ivar in a class extension with LLVM2.0.(gcc can't do this)
This is somehow really private iVar because other users don't it's existence since it's not in the header ...
2
votes
1answer
599 views
clang-2.9 crt1 not found error
Just compiled clang-2.9 release and it can't link an hello world example with error crt1.o: No such file: No such file or directory.
LLVM is configured as default + --enable-shared. The llvn-2.8 ...
2
votes
1answer
153 views
Clang TOT, huh?
I wanted to try out some new features in Clang, and I was referred to Clang TOT.
Now this might be an obvious question by what the heck is Clang TOT.
TOT must be some acronym that I am not familiar ...
2
votes
2answers
5k views
Enable LLVM + Clang in Xcode new project causes linking errors
I've done a complete clean uninstall of XCode and deleted the prefs and deleted complete /Developer folder and reinstalled XCode again.
I create a new Cocoa application, go over to Target, doing a ...
1
vote
2answers
55 views
Can u tell me what does the clang -cc1 option do?
I'm a newbie in clang I have read a paper about source to source transformation from cuda to opencl using clang compiler front end.
Can anyone tell me why the option -cc1 is sometimes used? Any help ...
1
vote
1answer
118 views
C++ template class specializations and structs
I've spent hours searching on the web for a solution but to no avail. I'm programming C++ in Xcode
#import "data.h" // contains a struct called data
template <class T>
class container {
...
1
vote
1answer
344 views
LLVM has test coverage support in xcode 4?
Does clang/llvm have support to produce test coverage files as was the case with GCC which produced .gcov files. if yes how?
1
vote
2answers
85 views
Print the type of a parameter (ParmVarDecl) with clang API
I need to print the type of a parameter in a C++ source file using the clang API.
If I have a parameter representation in clang (ParmVarDecl* param) I can print the name of the parameter using ...
1
vote
1answer
393 views
libclang: error: clang-c/Index.h: No such file or directory
i was trying to use clang to parse c++ code, but am unable to compile my source code because i am unable to find libclang headers.
I am running ubuntu 10.04 and have installed clang and llvm ...
1
vote
3answers
152 views
C++ constructor Syntax Doubt
I was going through a tutorial for building an AST with the help of Clang/LLVM . http://amnoid.de/tmp/clangtut/tut.html . This is the link to that tutorial.
I see this syntax there
struct PPContext ...
1
vote
1answer
254 views
How can you add a new keyword to clang, a keyword that would be treated as main?
How can a new keyword be added to clang? The new keyword should be a function qualifier. Where would the declaration part go?
Thanks.
1
vote
3answers
388 views
Problem with Core Data, protocols, and readwrite vs. readonly property declarations
I'm running into an odd quirk involving Core Data, a declared protocol, and perhaps the LLVM 1.5 compiler. Here's the situation.
I have a Core Data model that among others has two classes, ...
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
0answers
44 views
How to emit-ast to file using ASTUnit object in clang
I have an ASTUnit object. Howt to print the ast info to file just like printing the same using the command clang -emit-ast switch.
0
votes
1answer
36 views
get pointer for CallInst?
I'm working on a LLVM pass where I'm interested in calls on function pointers. Besides from knowing what the pointer actually points too(or what will actually be called) I would like to have the ...
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
238 views
LLVM and visual studio .obj binary incompatibility
Does anyone know if LLVM binary compatibility is planned for visual studio combiled .obj and static .lib files?
Right now I can only link LLVM made .obj files with dynamic libs that loads a DLL at ...
0
votes
0answers
363 views
Is libclang slower than using clang driver based tool?
I am writing an autocompletion and syntax tool using libclang. I am pretty much using the same code as in c-index-test.c file. But the speed of results is very slow. There are few non libclang clang ...
0
votes
1answer
105 views
Using Clang -fsyntax-only mode with static libraries?
I am using libclang library to build autocomplete feature. libclang automatically -fsyntax-only flag internally. libclang seems to require entire source code tree available in order to work (or .pch ...
0
votes
1answer
107 views
What version clang is in Xcode 3?
How do I figure which version of clang that Xcode use?
It's 1.5 in Xcode, yet the official llvm-clang is 2.7. Are they the same?