Top "Llvm" questions

The LLVM Project is a collection of modular and reusable compiler and toolchain technologies.

gcc vs. clang: symbol stripping

gcc and AMD Open64 opencc both have a -s option to "strip symbol table and relocation information". So far I …

optimization gcc llvm clang strip
How can I implement a string data type in LLVM?

I have been looking at LLVM lately, and I find it to be quite an interesting architecture. However, looking through …

string llvm
Sample CMakeLists.txt file for LLVM project

I am having a hard time to get LLVM to work on a new project. I've tried multiple CMakeLists.txt …

c++ cmake llvm
How to print dependencies from llvm / clang (equivalent of gcc -MD)?

Our build system is using gcc to generate source file's header dependencies to *.d files, when compiling: gcc -MD -MF …

llvm clang
How to fix or locat the problem of "ninja: build stopped: subcommand failed."?

BACKGROUND: I want to use Obfuscator-llvm-8.0 version of clang and clang++ with AndroidStudio on Windows7; so i get the Obfuscator-llvm-8.0 …

cmake llvm ninja
Is it possible to use LLVM-assembly directly?

I have read some webpages and articles about llvm and I am quite interested in this project. (Maybe to learn …

assembly llvm llvm-ir
Under what conditions is @synthesize automatic in Objective-c?

Under what conditions is @synthesize automatic in Objective-c? Perhaps when using LLVM 3.0 and up? From reading around the net it …

objective-c llvm synthesize
What is LLVM and How is replacing Python VM with LLVM increasing speeds 5x?

Google is sponsoring an Open Source project to increase the speed of Python by 5x. Unladen-Swallow seems to have a …

python multicore llvm unladen-swallow
Is it possible to compile LLVM libraries to android/ARM

I'm fascinated by the Pure algebraic/functional language. The Pure interpreter uses the LLVM JIT compiler as its backend. I …

android arm llvm cross-compiling
Any tutorial for embedding Clang as script interpreter into C++ Code?

I have no experience with llvm or clang, yet. From what I read clang is said to be easily embeddable …

c++ jit llvm clang embedded-language