From b973616c17b0bf2364dc704ce50877217ce7e680 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Mon, 11 Jan 2016 20:51:57 +0000 Subject: [PATCH] Update the VS getting started docs to reflect the current state of support git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257381 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStartedVS.rst | 34 ++++++++++++++-------------------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/docs/GettingStartedVS.rst b/docs/GettingStartedVS.rst index 63e81f5165d..0ca50904ce4 100644 --- a/docs/GettingStartedVS.rst +++ b/docs/GettingStartedVS.rst @@ -12,26 +12,20 @@ Welcome to LLVM on Windows! This document only covers LLVM on Windows using Visual Studio, not mingw or cygwin. In order to get started, you first need to know some basic information. -There are many different projects that compose LLVM. The first is the LLVM -suite. This contains all of the tools, libraries, and header files needed to -use LLVM. It contains an assembler, disassembler, -bitcode analyzer and bitcode optimizer. It also contains a test suite that can -be used to test the LLVM tools. - -Another useful project on Windows is `Clang `_. -Clang is a C family ([Objective]C/C++) compiler. Clang mostly works on -Windows, but does not currently understand all of the Microsoft extensions -to C and C++. Because of this, clang cannot parse the C++ standard library -included with Visual Studio, nor parts of the Windows Platform SDK. However, -most standard C programs do compile. Clang can be used to emit bitcode, -directly emit object files or even linked executables using Visual Studio's -``link.exe``. - -The large LLVM test suite cannot be run on the Visual Studio port at this -time. - -Most of the tools build and work. ``bugpoint`` does build, but does -not work. +There are many different projects that compose LLVM. The first piece is the +LLVM suite. This contains all of the tools, libraries, and header files needed +to use LLVM. It contains an assembler, disassembler, bitcode analyzer and +bitcode optimizer. It also contains basic regression tests that can be used to +test the LLVM tools and the Clang front end. + +The second piece is the `Clang `_ front end. This +component compiles C, C++, Objective C, and Objective C++ code into LLVM +bitcode. Clang typically uses LLVM libraries to optimize the bitcode and emit +machine code. LLVM fully supports the COFF object file format, which is +compatible with all other existing Windows toolchains. + +The last major part of LLVM, the execution Test Suite, does not run on Windows, +and this document does not discuss it. Additional information about the LLVM directory structure and tool chain can be found on the main :doc:`GettingStarted` page. -- 2.34.1