1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Small documentation update.

llvm-svn: 60045
This commit is contained in:
Mikhail Glushenkov 2008-11-25 21:34:29 +00:00
parent 3a0ef826d3
commit a1314465ee
2 changed files with 8 additions and 6 deletions

View File

@ -41,8 +41,8 @@ language names (which are, in turn, determined from file
extensions). If you want to force files ending with ".c" to compile as extensions). If you want to force files ending with ".c" to compile as
C++, use the ``-x`` option, just like you would do it with ``gcc``:: C++, use the ``-x`` option, just like you would do it with ``gcc``::
$ llvmc2 -x c hello.cpp $ # hello.c is really a C++ file
$ # hello.cpp is really a C file $ llvmc2 -x c++ hello.c
$ ./a.out $ ./a.out
hello hello
@ -361,7 +361,7 @@ Tool-specific option properties like ``append_cmd`` have (obviously)
no meaning in the context of ``OptionList``, so the only properties no meaning in the context of ``OptionList``, so the only properties
allowed there are ``help`` and ``required``. allowed there are ``help`` and ``required``.
Option lists are used at the file scope. See file Option lists are used at file scope. See the file
``plugins/Clang/Clang.td`` for an example of ``OptionList`` usage. ``plugins/Clang/Clang.td`` for an example of ``OptionList`` usage.
.. _hooks: .. _hooks:

View File

@ -23,8 +23,10 @@ much as possible, so most of the familiar options work::
$ ./a.out $ ./a.out
hello hello
For further help on command-line LLVMC usage, refer to the ``llvmc This will invoke ``llvm-g++`` under the hood (you can see which
--help`` output. commands are executed by using the ``-v`` option). For further help on
command-line LLVMC usage, refer to the ``llvmc --help`` output.
Using LLVMC to generate toolchain drivers Using LLVMC to generate toolchain drivers
========================================= =========================================
@ -51,7 +53,7 @@ reference manual.
Contents of the file ``Simple.td`` look like this:: Contents of the file ``Simple.td`` look like this::
// Include common definitions // Include common definitions
include "Common.td" include "llvm/CompilerDriver/Common.td"
// Tool descriptions // Tool descriptions
def gcc : Tool< def gcc : Tool<