From f96eb57a4bb9ceca22fa9609cc6eca8f74fa565e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 15 Dec 2004 00:14:01 +0000 Subject: Remove most references to LLVM_LIB_SEARCH_PATH. It now only exists in the GettingStarted.html document in the environment section and only as an optional feature. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18944 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStarted.html | 32 ++++++++++---------------------- 1 file changed, 10 insertions(+), 22 deletions(-) (limited to 'docs/GettingStarted.html') diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index e57defd..cb81b19 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -185,7 +185,6 @@ and performance.
  • Build the LLVM Suite:
      -
    1. Set your LLVM_LIB_SEARCH_PATH environment variable.
    2. gmake -k |& tee gnumake.out    # this is csh or tcsh syntax
    3. If you get an "internal compiler error (ICE)" see below.
    4. @@ -548,17 +547,16 @@ You can set these on the command line, or better yet, set them in your .cshrc or .profile.
      -
      LLVM_LIB_SEARCH_PATH=LLVMGCCDIR/lib -
      - This environment variable helps the LLVM GCC front end find bytecode - libraries that it will need for compilation. -

      - -

      alias llvmgcc LLVMGCCDIR/bin/gcc -
      alias llvmg++ LLVMGCCDIR/bin/g++ -
      - These aliases allow you to use the LLVM C and C++ front ends without putting - them in your PATH or typing in their complete pathnames. +
      LLVM_LIB_SEARCH_PATH=/path/to/your/bytecode/libs
      +
      This environment variable helps LLVM linking tools find the locations + of your bytecode libraries. It is optional and provided only a convenience + since you can specify the paths using the -L options of the tools.
      + +
      alias llvmgcc LLVMGCCDIR/bin/gcc
      +
      alias llvmg++ LLVMGCCDIR/bin/g++
      +
      These aliases allow you to use the LLVM C and C++ front ends + without putting them in your PATH or typing in their complete + pathnames.
      @@ -802,16 +800,6 @@ script to configure the build system:

    -

    In addition to running configure, you must set the -LLVM_LIB_SEARCH_PATH environment variable in your startup shell -scripts. This environment variable is used to locate "system" libraries like -"-lc" and "-lm" when linking. This variable should be set to -the absolute path of the lib subdirectory of the GCC front -end, or LLVMGCCDIR/lib. For example, one might set -LLVM_LIB_SEARCH_PATH to -/home/vadve/lattner/local/x86/llvm-gcc/lib for the x86 -version of the GCC front end on our research machines.

    - -- cgit v1.1