Lines Matching +refs:clang +refs:prefix +refs:header
15 contains all of the tools, libraries, and header files needed to use LLVM. It
20 The second piece is the `Clang <http://clang.llvm.org/>`_ front end. This
33 Getting Started <http://clang.llvm.org/get_started.html>`_ page might also be a
50 * ``svn co http://llvm.org/svn/llvm-project/cfe/trunk clang``
288 causes Clang to refuse to compile condition_variable header file. At the time
336 % $PWD/../gcc-4.8.2/configure --prefix=$HOME/toolchains --enable-languages=c,c++
368 or install Clang into the same prefix (``$HOME/toolchains`` above) as GCC.
369 Clang will look within its own prefix for libstdc++ and use it if found. You
370 can also add an explicit prefix for Clang to look in for a GCC toolchain with
371 the ``--gcc-toolchain=/opt/my/gcc/prefix`` flag, passing it to both compile and
513 If you want to check out clang too, run:
518 % git clone http://llvm.org/git/clang.git
610 # If you have clang too:
612 % git clone http://llvm.org/git/clang.git
613 % cd clang
625 % git fetch && (cd tools/clang && git fetch) # Get matching revisions of both trees.
628 % (cd tools/clang &&
748 % cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=prefix=/install/path
812 Installs LLVM header files, libraries, tools, and documentation in a hierarchy
847 <http://clang.llvm.org/docs/CrossCompilation.html>`_ for more information
927 This directory contains public header files exported from the LLVM library. The
932 This directory contains all of the LLVM specific header files. This directory
940 a Command Line option processing library store their header files here.
944 This directory contains header files configured by the ``configure`` script.
945 They wrap "standard" UNIX and C header files. Source code can include these
946 header files which automatically take care of the conditional #includes that
1012 This directory contains the source code that corresponds to the header files
1178 Example with clang
1196 % clang hello.c -o hello
1207 % clang -O3 -emit-llvm hello.c -c -o hello.bc
1254 Note that using clang to compile directly to native code (i.e. when the