summaryrefslogtreecommitdiff
path: root/docs/UsersManual.rst
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2014-06-13 23:35:54 +0000
committerAdrian Prantl <aprantl@apple.com>2014-06-13 23:35:54 +0000
commit31c3b80b5f6bb2e6597f660d27cfe5d34146f53b (patch)
treee2d4691b4a26f4f8623348f2017d9dffe0dfcbf5 /docs/UsersManual.rst
parent461cfc5c98be23dbefdbf953b8a635b74ee546c0 (diff)
downloadclang-31c3b80b5f6bb2e6597f660d27cfe5d34146f53b.tar.gz
clang-31c3b80b5f6bb2e6597f660d27cfe5d34146f53b.tar.bz2
clang-31c3b80b5f6bb2e6597f660d27cfe5d34146f53b.tar.xz
Document Darwin-specific defaults.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210958 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/UsersManual.rst')
-rw-r--r--docs/UsersManual.rst10
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/UsersManual.rst b/docs/UsersManual.rst
index d6e30bb92c..63154a8d7b 100644
--- a/docs/UsersManual.rst
+++ b/docs/UsersManual.rst
@@ -1298,7 +1298,7 @@ below. If multiple flags are present, the last one is used.
doesn't contain any other data (e.g. description of local variables or
function parameters).
-.. option:: -fstandalone-debug **-fno-standalone-debug**
+.. option:: -fstandalone-debug
Clang supports a number of optimizations to reduce the size of debug
information in the binary. They work based on the assumption that
@@ -1309,11 +1309,17 @@ below. If multiple flags are present, the last one is used.
type info for a dynamic C++ class in the module that contains the
vtable for the class.
- The ``-fstandalone-debug`` option turns off these optimizations.
+ The **-fstandalone-debug** option turns off these optimizations.
This is useful when working with 3rd-party libraries that don't come
with debug information. Note that Clang will never emit type
information for types that are not referenced at all by the program.
+.. option:: -fno-standalone-debug
+
+ On Darwin **-fstandalone-debug** is enabled by default. The
+ **-fno-standalone-debug** option can be used to get to turn on the
+ vtable-based optimization described above.
+
.. option:: -g
Generate complete debug info.