Top "Llvm" questions

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

lldb: Breakpoint on exceptions (equivalent of gdb's catch throw)

I am trying to use lldb for c++ debugging and I want to halt if an exception is thrown, like …

debugging llvm lldb
"-Weverything" yielding "Comparing floating point with == or != is unsafe"

I have a string that I convert to a double like this: double d = [string doubleValue]; The documentation for doubleValue …

objective-c cocoa llvm clang
Is it possible to transform LLVM bytecode into Java bytecode?

I have heard that google app engine can run any programming language that can be transformed to Java bytecode via …

java compiler-construction llvm
Linking libc++ to CMake project on Linux

I want to use libc++ together with clang on Arch Linux in CMake project. I installed libc++ and added following …

c++ linux cmake llvm clang++
clang++: fatal error: 'unistd.h' file not found

Using OS X 10.10.2, I download Clang for Mac OS X v. 3.6.0, and try to compile a simple Hello World program. …

c++ macos clang llvm unistd.h
how to use llvm+clang to compile for stm32

Has someone infos how to build a llvm+clang toolchain using binutils and newlib and how to use it? host: …

arm llvm clang cortex-m3 stm32
How do I specify a clang-format file?

I just built clang 5.0.0 on a Redhat 6 machine and tried to run clang-format. I'm unable to get the -style option …

c++ clang llvm llvm-clang clang-format
Optimization levels in LLVM and Clang

I am working on a project that I had been compiling with LLVM 2.6 and the llvm-gcc front end. I'm trying …

llvm clang llvm-gcc
How to check the LLVM compiler version Xcode is using?

I'm using Xcode 4.5.2 on OS X 10.8.2. How do I know which version of LLVM compiler Xcode is using?

xcode llvm
Converting llvm .bc file to human readable .ll file

How can I generate human readable llvm bitcode (extension .ll) from the binary llvm bitcode (extension .bc) file?

c linux llvm clang x86-64