[cfe-commits] r116608 - /cfe/trunk/include/clang/Driver/Options.td
Argyrios Kyrtzidis
akyrtzi at gmail.com
Fri Oct 15 11:52:45 PDT 2010
Author: akirtzidis
Date: Fri Oct 15 13:52:45 2010
New Revision: 116608
URL: http://llvm.org/viewvc/llvm-project?rev=116608&view=rev
Log:
Again, add '-include-pch' option to the driver, so it can get passed to the cc1 driver.
Modified:
cfe/trunk/include/clang/Driver/Options.td
Modified: cfe/trunk/include/clang/Driver/Options.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Driver/Options.td?rev=116608&r1=116607&r2=116608&view=diff
==============================================================================
--- cfe/trunk/include/clang/Driver/Options.td (original)
+++ cfe/trunk/include/clang/Driver/Options.td Fri Oct 15 13:52:45 2010
@@ -426,6 +426,7 @@
def imacros : JoinedOrSeparate<"-imacros">, Group<clang_i_Group>;
def image__base : Separate<"-image_base">;
def include_ : JoinedOrSeparate<"-include">, Group<clang_i_Group>, EnumName<"include">;
+def include_pch : Separate<"-include-pch">, Group<clang_i_Group>;
def init : Separate<"-init">;
def install__name : Separate<"-install_name">;
def integrated_as : Flag<"-integrated-as">, Flags<[DriverOption]>;
More information about the cfe-commits
mailing list