diff --git a/docs/CFEBuildInstrs.html b/docs/CFEBuildInstrs.html index 926e7ff41f4..de53e0189ea 100644 --- a/docs/CFEBuildInstrs.html +++ b/docs/CFEBuildInstrs.html @@ -94,10 +94,15 @@ invalid code. Instead, use the system assembler and linker.
Configure and build the LLVM libraries and tools using:
% cd llvm - % ./configure [options...] + % ./configure --prefix=/some/path/you/can/install/to [options...] % gmake tools-only-
This will build all of the LLVM tools and libraries.
This will build all of the LLVM tools and libraries. The --prefix + option defaults to /usr/local (per configure standards) but unless you are a + system administrator, you probably won't be able to install LLVM there because + of permissions. Specify a path into which LLVM can be installed (e.g. + --prefix=/home/user/llvm).
+Add the directory containing the tools to your PATH.