diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-11 21:50:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-11 21:50:06 +0000 |
commit | 1e8166a92a48bf7a5b114625b5b157363f078c22 (patch) | |
tree | 8c4f66d98b5cc2cdc2f03d6640fa864bf2069605 /docs/GettingStarted.html | |
parent | 98abb5286796f4f1c4f6e7f1f6407636ea8b04f4 (diff) | |
download | external_llvm-1e8166a92a48bf7a5b114625b5b157363f078c22.zip external_llvm-1e8166a92a48bf7a5b114625b5b157363f078c22.tar.gz external_llvm-1e8166a92a48bf7a5b114625b5b157363f078c22.tar.bz2 |
Add info about the LLVM_LIB_SEARCH_PATH envvar
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6096 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GettingStarted.html')
-rw-r--r-- | docs/GettingStarted.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 7d997c9..d7d47ae 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -80,6 +80,7 @@ <li>Edit <tt>Makefile.config</tt> to set local paths. This includes setting the install location of the C frontend, and the various paths to the C and C++ compilers used to build LLVM itself. + <li>Set your LLVM_LIB_SEARCH_PATH environment variable. <li><tt>gmake -k |& tee gnumake.out # this is csh or tcsh syntax</tt> </ol> @@ -145,6 +146,15 @@ <p><li><i>PURIFY</i> = Path to the purify program. </ul> + In addition to settings in this file, you must set a + <tt>LLVM_LIB_SEARCH_PATH</tt> environment variable in your startup scripts. + This environment variable is used to locate "system" libraries like + "<tt>-lc</tt>" and "<tt>-lm</tt>" when linking. This variable should be set + to the absolute path for the bytecode-libs subdirectory of the C front-end + install. For example, + <tt>/home/vadve/lattner/local/x86/llvm-gcc/bytecode-libs</tt> for the X86 + version of the C front-end, on our research machines.<p> + <!-------------------------------------------------------------------------> <h3><a name="objfiles">The location for LLVM object files</a></h3> <!-------------------------------------------------------------------------> @@ -462,7 +472,7 @@ <!-- Created: Mon Jul 1 02:29:02 CDT 2002 --> <!-- hhmts start --> -Last modified: Thu Feb 13 22:20:39 CST 2003 +Last modified: Sun May 11 16:49:46 CDT 2003 <!-- hhmts end --> </body> </html> |