Changeset 3354e6d for src/driver
- Timestamp:
- Jul 20, 2017, 5:55:38 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- dfa66dc
- Parents:
- b15f6cf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/driver/cfa.cc
rb15f6cf r3354e6d 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jan 20 14:38:45 201713 // Update Count : 15 512 // Last Modified On : Thu Jul 20 15:54:45 2017 13 // Update Count : 156 14 14 // 15 15 … … 76 76 bool cpp_flag = false; // -E or -M flag, preprocessor only 77 77 bool std_flag = false; // -std= flag 78 bool noincstd_flag = false; // -no-include-stdhdr= flag79 78 bool debugging __attribute(( unused )) = false; // -g flag 80 79 … … 134 133 } else if ( arg == "-nohelp" ) { 135 134 help = false; // strip the nohelp flag 136 } else if ( arg == "-no-include-stdhdr" ) {137 noincstd_flag = true; // strip the no-include-stdhdr flag138 135 } else if ( arg == "-compiler" ) { 139 136 // use the user specified compiler … … 234 231 args[nargs] = "-I" CFA_INCDIR; 235 232 nargs += 1; 236 if ( ! noincstd_flag ) { // do not use during build 237 args[nargs] = "-I" CFA_INCDIR "/stdhdr"; 238 nargs += 1; 239 } // if 233 args[nargs] = "-I" CFA_INCDIR "/stdhdr"; 234 nargs += 1; 240 235 args[nargs] = "-I" CFA_INCDIR "/concurrency"; 241 236 nargs += 1;
Note: See TracChangeset
for help on using the changeset viewer.