Changes in src/driver/cfa.cc [e9145a3:fa477f7]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/driver/cfa.cc
re9145a3 rfa477f7 9 9 // Author : Peter A. Buhr 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 // Last Modified By : Andrew Beach12 // Last Modified On : T hr Aug 17 15:24:00201713 // Update Count : 1 5611 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Oct 31 11:40:44 2017 13 // Update Count : 160 14 14 // 15 15 … … 305 305 } // if 306 306 307 shuffle( args, sargs, nargs, 1 ); // make room at front of argument list 308 nargs += 1; 307 309 if ( CFA_flag ) { 310 args[sargs] = "-D__CFA_FLAG__=-N"; 308 311 args[nargs] = "-D__CFA_PREPROCESS_"; 309 312 nargs += 1; 310 } // if 313 } else { 314 args[sargs] = "-D__CFA_FLAG__=-L"; 315 } // if 316 sargs += 1; 311 317 312 318 if ( debug ) { … … 345 351 } // if 346 352 args[nargs] = "-fgnu89-inline"; 353 nargs += 1; 354 args[nargs] = "-D__int8_t_defined"; // prevent gcc type-size attributes 347 355 nargs += 1; 348 356 args[nargs] = ( *new string( string("-B") + Bprefix + "/" ) ).c_str();
Note:
See TracChangeset
for help on using the changeset viewer.