Changeset 14347ac for driver


Ignore:
Timestamp:
Aug 9, 2019, 5:03:08 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
ef46abb
Parents:
bbfd0e0
Message:

libcfa now properly supports building with --enable-distcc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • driver/cfa.cc

    rbbfd0e0 r14347ac  
    140140
    141141        // process command-line arguments
     142
     143        args[nargs] = "-x";                                                                     // turn off language
     144        nargs += 1;
     145        args[nargs] = "c";
     146        nargs += 1;
    142147
    143148        for ( int i = 1; i < argc; i += 1 ) {
     
    303308        } // for
    304309
    305     args[nargs] = "-x";                                                                 // turn off language
    306     nargs += 1;
    307     args[nargs] = "none";
    308     nargs += 1;
    309 
    310310        #ifdef __x86_64__
    311311        args[nargs] = "-mcx16";                                                         // allow double-wide CAA
     
    557557        if ( ! quiet ) {
    558558                cerr << "CFA " << "Version " << Version << heading << endl;
    559 
    560559                if ( help ) {
    561560                        cerr <<
Note: See TracChangeset for help on using the changeset viewer.