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