diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-23 18:02:28 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-23 18:02:28 +0000 |
commit | 18d8a461e5a0e7f59f38663b211852fc21457907 (patch) | |
tree | 623bbb8bdba698a77c53adb6f5ebc91e23f7eee9 /clang/docs | |
parent | e4c46fec738596f551df6b2678cddc1f0aa09e30 (diff) | |
download | bcm5719-llvm-18d8a461e5a0e7f59f38663b211852fc21457907.tar.gz bcm5719-llvm-18d8a461e5a0e7f59f38663b211852fc21457907.zip |
Documentation: add a note that -cc1 options are not guaranteed to be stable
llvm-svn: 173280
Diffstat (limited to 'clang/docs')
-rw-r--r-- | clang/docs/FAQ.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/docs/FAQ.rst b/clang/docs/FAQ.rst index dc97507f054..d0b47d685cf 100644 --- a/clang/docs/FAQ.rst +++ b/clang/docs/FAQ.rst @@ -42,7 +42,8 @@ for your system. To see these options, run: Some clang command line options are driver-only options, some are frontend-only options. Frontend-only options are intended to be used only by developers. -Users should not run ``clang -cc1`` directly. +Users should not run ``clang -cc1`` directly, because ``-cc1`` options are not +guaranteed to be stable. If you want to use a frontend-only option ("a ``-cc1`` option"), for example ``-ast-dump``, then you need to take the ``clang -cc1`` line generated by the |