Clang Introduction - learnclang/1-helloworld GitHub Wiki

In this guide, I will walk you through compiling your first program using Clang, an LLVM front-end for the C language families - C, C++ and Objective-C. For our purposes, compiling with Clang is identical to compiling using GCC, so you may refer to the GCC chapters for setting up your environment and writing your program. In this tutorial, we will focus on getting Clang set-up.

  1. Preparing your environment
  2. Writing hello world
  3. Why use Clang?

[Next: Compilation ->](Clang Compilation)