Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • driver/cfa.cc

    r13a984c rbec4d24  
    359359
    360360        string arch = m32 ? CFA_32_CPU : (m64 ? CFA_64_CPU : CFA_DEFAULT_CPU);
    361         if ( ! m32 && ! m64 ) {
    362                 if ( arch == "x86" ) {
    363                         args[nargs] = "-m32";
    364                         nargs += 1;
    365                 } else if ( arch == "x64" ) {
    366                         args[nargs] = "-m64";
    367                         nargs += 1;
    368                 }  // if
     361        if ( ! m32 && ! m64 && arch == "x86" ) {                        // no override and 32-bit architecture
     362                args[nargs] = "-m32";
     363                nargs += 1;
    369364        } // if
    370365        const char * config = debug ? "debug": "nodebug";
Note: See TracChangeset for help on using the changeset viewer.