Changes in src/driver/cfa.cc [53ba273:4c82a3c]
- File:
-
- 1 edited
-
src/driver/cfa.cc (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/driver/cfa.cc
r53ba273 r4c82a3c 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Apr 6 14:04:22201613 // Update Count : 13 212 // Last Modified On : Fri Jun 10 09:26:19 2016 13 // Update Count : 138 14 14 // 15 15 … … 75 75 string langstd; // language standard 76 76 77 string compiler_path( GCC_PATH );// path/name of C compiler77 string compiler_path( CFA_BACKEND_CC ); // path/name of C compiler 78 78 string compiler_name; // name of C compiler 79 79 … … 263 263 args[nargs] = ( *new string( string("-D__CFA_PATCHLEVEL__=") + Patch ) ).c_str(); 264 264 nargs += 1; 265 args[nargs] = "-D__CFORALL__=1"; 265 args[nargs] = "-D__CFA__"; 266 nargs += 1; 267 args[nargs] = "-D__CFORALL__"; 266 268 nargs += 1; 267 269 … … 272 274 273 275 if ( CFA_flag ) { 274 args[nargs] = "-D__CFA_ _";276 args[nargs] = "-D__CFA_PREPROCESS_"; 275 277 nargs += 1; 276 278 } // if … … 310 312 nargs += 1; 311 313 } // if 314 args[nargs] = "-fgnu89-inline"; 315 nargs += 1; 312 316 args[nargs] = ( *new string( string("-B") + Bprefix + "/" ) ).c_str(); 313 317 nargs += 1; … … 315 319 nargs += 1; 316 320 } else { 317 cerr << argv[0] << " error, compiler " << compiler_name << " notsupported." << endl;321 cerr << argv[0] << " error, compiler \"" << compiler_name << "\" unsupported." << endl; 318 322 exit( EXIT_FAILURE ); 319 323 } // if
Note:
See TracChangeset
for help on using the changeset viewer.