X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=docs%2FGettingStarted.html;h=b75b1c654a69afe7e28d7bb36796f0d2a9a95692;hb=b07ce60981368f816af4caa3257e1e4ebf059133;hp=89253b640181f9693e0081e9c42b83b109df28ed;hpb=780679baa7008e54cb94f383c5b13ee995e21fe3;p=oota-llvm.git diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 89253b64018..b75b1c654a6 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -452,8 +452,8 @@ href="GCCFEBuildInstrs.html">try to compile it on your platform.

  • Only needed if you want to run the automated test suite in the llvm/test directory.
  • If you want to make changes to the configure scripts, - you will need GNU autoconf (2.59), and consequently, GNU M4 (version 1.4 - or higher). You will also need automake (1.9.2). We only use aclocal + you will need GNU autoconf (2.60), and consequently, GNU M4 (version 1.4 + or higher). You will also need automake (1.9.6). We only use aclocal from that package.
  • @@ -1137,13 +1137,13 @@ platforms or configurations using the same source tree.

    named after the build type:

    -
    Debug Builds +
    Debug Builds with assertions enabled (the default)
    Tools -
    OBJ_ROOT/Debug/bin +
    OBJ_ROOT/Debug+Asserts/bin
    Libraries -
    OBJ_ROOT/Debug/lib +
    OBJ_ROOT/Debug+Asserts/lib


    @@ -1193,10 +1193,16 @@ $ ./hello.bc

    -This allows you to execute LLVM bitcode files directly. Thanks to Jack -Cummings for pointing this out! +This allows you to execute LLVM bitcode files directly. On Debian, you +can also use this command instead of the 'echo' command above:

    +
    +
    +$ sudo update-binfmts --install llvm /path/to/lli --magic 'BC'
    +
    +
    + @@ -1363,7 +1369,7 @@ end to compile.

    The tools directory contains the executables built out of the libraries above, which form the main part of the user interface. You can -always get help for a tool by typing tool_name --help. The +always get help for a tool by typing tool_name -help. The following is a brief introduction to the most important tools. More detailed information is in the Command Guide.

    @@ -1434,7 +1440,7 @@ information is in the Command Guide.

    opt
    opt reads LLVM bitcode, applies a series of LLVM to LLVM transformations (which are specified on the command line), and then outputs - the resultant bitcode. The 'opt --help' command is a good way to + the resultant bitcode. The 'opt -help' command is a good way to get a list of the program transformations available in LLVM.
    opt can also be used to run a specific analysis on an input LLVM bitcode file and print out the results. It is primarily useful for