Changes in / [273ff10:3c54a71]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • driver/cfa.cc

    r273ff10 r3c54a71  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jan 15 20:56:03 2019
    13 // Update Count     : 280
     12// Last Modified On : Fri Sep 14 23:02:59 2018
     13// Update Count     : 277
    1414//
    1515
     
    384384        nargs += 1;
    385385
    386         for ( int i = 0; i < nlibs; i += 1 ) {                          // copy non-user libraries after all user libraries
    387                 args[nargs] = libs[i];
    388                 nargs += 1;
    389         } // for
    390 
    391386        if ( link ) {
    392387                args[nargs] = "-Xlinker";
     
    419414                nargs += 1;
    420415                args[nargs] = "-lrt";
    421                 nargs += 1;
    422                 args[nargs] = "-lm";
    423416                nargs += 1;
    424417        } // if
     
    505498                args[nargs] = ( *new string( string("-B") + Bprefix ) ).c_str();
    506499                nargs += 1;
     500                args[nargs] = "-lm";
     501                nargs += 1;
    507502        } else {
    508503                cerr << argv[0] << " error, compiler \"" << compiler_name << "\" unsupported." << endl;
    509504                exit( EXIT_FAILURE );
    510505        } // 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
    511511
    512512        args[nargs] = NULL;                                                                     // terminate with NULL
  • src/main.cc

    r273ff10 r3c54a71  
    1010// Created On       : Fri May 15 23:12:02 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Dec 26 08:11:19 2018
    13 // Update Count     : 499
     12// Last Modified On : Wed Jun  6 15:51:47 2018
     13// Update Count     : 498
    1414//
    1515
     
    371371                        }
    372372                } catch(const std::exception& e) {
    373                         std::cerr << "Uncaught Exception \"" << e.what() << "\"\n";
     373                        std::cerr << "Unaught Exception \"" << e.what() << "\"\n";
    374374                }
    375375                return 1;
Note: See TracChangeset for help on using the changeset viewer.