Changes in / [273ff10:3c54a71]
- Files:
-
- 2 edited
-
driver/cfa.cc (modified) (4 diffs)
-
src/main.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
driver/cfa.cc
r273ff10 r3c54a71 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jan 15 20:56:03 201913 // Update Count : 2 8012 // Last Modified On : Fri Sep 14 23:02:59 2018 13 // Update Count : 277 14 14 // 15 15 … … 384 384 nargs += 1; 385 385 386 for ( int i = 0; i < nlibs; i += 1 ) { // copy non-user libraries after all user libraries387 args[nargs] = libs[i];388 nargs += 1;389 } // for390 391 386 if ( link ) { 392 387 args[nargs] = "-Xlinker"; … … 419 414 nargs += 1; 420 415 args[nargs] = "-lrt"; 421 nargs += 1;422 args[nargs] = "-lm";423 416 nargs += 1; 424 417 } // if … … 505 498 args[nargs] = ( *new string( string("-B") + Bprefix ) ).c_str(); 506 499 nargs += 1; 500 args[nargs] = "-lm"; 501 nargs += 1; 507 502 } else { 508 503 cerr << argv[0] << " error, compiler \"" << compiler_name << "\" unsupported." << endl; 509 504 exit( EXIT_FAILURE ); 510 505 } // if 506 507 for ( int i = 0; i < nlibs; i += 1 ) { // copy non-user libraries after all user libraries 508 args[nargs] = libs[i]; 509 nargs += 1; 510 } // for 511 511 512 512 args[nargs] = NULL; // terminate with NULL -
src/main.cc
r273ff10 r3c54a71 10 10 // Created On : Fri May 15 23:12:02 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Dec 26 08:11:19201813 // Update Count : 49 912 // Last Modified On : Wed Jun 6 15:51:47 2018 13 // Update Count : 498 14 14 // 15 15 … … 371 371 } 372 372 } catch(const std::exception& e) { 373 std::cerr << "Un caught Exception \"" << e.what() << "\"\n";373 std::cerr << "Unaught Exception \"" << e.what() << "\"\n"; 374 374 } 375 375 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.