Changes in driver/cfa.cc [bec4d24:13a984c]
- File:
-
- 1 edited
-
driver/cfa.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
driver/cfa.cc
rbec4d24 r13a984c 359 359 360 360 string arch = m32 ? CFA_32_CPU : (m64 ? CFA_64_CPU : CFA_DEFAULT_CPU); 361 if ( ! m32 && ! m64 && arch == "x86" ) { // no override and 32-bit architecture 362 args[nargs] = "-m32"; 363 nargs += 1; 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 364 369 } // if 365 370 const char * config = debug ? "debug": "nodebug";
Note:
See TracChangeset
for help on using the changeset viewer.