From: Douglas Katzman Date: Tue, 2 Jun 2015 22:06:32 +0000 (+0000) Subject: Correct DriverInternals.rst: ccc-print-options is gone. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7bfd44eda62a18b28e3c671bb68adad3caf332a;p=clang Correct DriverInternals.rst: ccc-print-options is gone. Was removed in svn r189802. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@238876 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/DriverInternals.rst b/docs/DriverInternals.rst index c779555dae..4cd2e5dfe6 100644 --- a/docs/DriverInternals.rst +++ b/docs/DriverInternals.rst @@ -138,12 +138,12 @@ The driver functionality is conceptually divided into five stages: this vector instead of storing its values directly. The clang driver can dump the results of this stage using the - ``-ccc-print-options`` flag (which must precede any actual command + ``-###`` flag (which must precede any actual command line arguments). For example: .. code-block:: console - $ clang -ccc-print-options -Xarch_i386 -fomit-frame-pointer -Wa,-fast -Ifoo -I foo t.c + $ clang -### -Xarch_i386 -fomit-frame-pointer -Wa,-fast -Ifoo -I foo t.c Option 0 - Name: "-Xarch_", Values: {"i386", "-fomit-frame-pointer"} Option 1 - Name: "-Wa,", Values: {"-fast"} Option 2 - Name: "-I", Values: {"foo"}