- Timestamp:
- Apr 10, 2023, 9:25:21 PM (21 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 6adeb5f
- Parents:
- 8472c6c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
driver/cfa.cc
r8472c6c r372b6d3 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Feb 14 22:46:38202313 // Update Count : 47 012 // Last Modified On : Mon Apr 10 21:16:00 2023 13 // Update Count : 476 14 14 // 15 15 … … 198 198 } // if 199 199 } else if ( arg == "-CFA" ) { 200 CFA_flag = true; // strip the-CFA flag200 CFA_flag = true; // strip -CFA flag 201 201 link = false; 202 202 args[nargs++] = "-fsyntax-only"; // stop after stage 2 203 203 } else if ( arg == "-debug" ) { 204 debug = true; // strip thedebug flag204 debug = true; // strip debug flag 205 205 } else if ( arg == "-nodebug" ) { 206 debug = false; // strip thenodebug flag206 debug = false; // strip nodebug flag 207 207 } else if ( arg == "-quiet" ) { 208 quiet = true; // strip thequiet flag208 quiet = true; // strip quiet flag 209 209 } else if ( arg == "-noquiet" ) { 210 quiet = false; // strip the noquiet flag 210 quiet = false; // strip noquiet flag 211 } else if ( arg == "-invariant" ) { 212 Putenv( argv, "-" + arg ); 213 } else if ( arg == "--invariant" ) { 214 Putenv( argv, arg ); 211 215 } else if ( arg == "-no-include-stdhdr" ) { 212 noincstd_flag = true; // strip theno-include-stdhdr flag216 noincstd_flag = true; // strip no-include-stdhdr flag 213 217 } else if ( arg == "-nolib" ) { 214 nolib = true; // strip thenolib flag218 nolib = true; // strip nolib flag 215 219 } else if ( arg == "-help" ) { 216 help = true; // strip thehelp flag220 help = true; // strip help flag 217 221 } else if ( arg == "-nohelp" ) { 218 help = false; // strip thenohelp flag222 help = false; // strip nohelp flag 219 223 } else if ( arg == "-cfalib") { 220 224 compiling_libs = true; … … 274 278 } // if 275 279 } else if ( prefix( arg, "-B" ) ) { 276 bprefix = arg.substr(2); // strip the-B flag280 bprefix = arg.substr(2); // strip -B flag 277 281 } else if ( arg == "-c" || arg == "-S" || arg == "-E" || arg == "-M" || arg == "-MM" ) { 278 282 args[nargs++] = argv[i]; // pass flag along
Note: See TracChangeset
for help on using the changeset viewer.