Changeset a9b657a for configure


Ignore:
Timestamp:
Mar 10, 2017, 11:01:31 AM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
dc0557d
Parents:
c857ad3 (diff), 149d297 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:/u/cforall/software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    rc857ad3 ra9b657a  
    644644CXXFLAGS
    645645CXX
     646CFA_FLAGS
    646647MACHINE_TYPE
    647648host_os
     
    653654build_cpu
    654655build
    655 CFA_FLAGS
    656656CFA_LIBDIR
    657657CFA_BINDIR
     
    33023302
    33033303
    3304 
    3305 cat >>confdefs.h <<_ACEOF
    3306 #define CFA_FLAGS "${CFAFLAGS}"
    3307 _ACEOF
    3308 
    3309 CFA_FLAGS=${CFAFLAGS}
    3310 
    3311 
    33123304# Make sure we can run config.sub.
    33133305$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
     
    33823374
    33833375MACHINE_TYPE=$host_cpu
     3376
     3377
     3378if ! test "$host_cpu" = "$build_cpu"; then
     3379        case $host_cpu in
     3380                i386)
     3381                        CFLAGS+="-m32"
     3382                        CXXFLAGS+="-m32"
     3383                        CFAFLAGS+="-m32"
     3384                        LDFLAGS+="-m32"
     3385                        ;;
     3386                i686)
     3387                        CFLAGS+="-m32"
     3388                        CXXFLAGS+="-m32"
     3389                        CFAFLAGS+="-m32"
     3390                        LDFLAGS+="-m32"
     3391                        ;;
     3392                x86_64)
     3393                        CFLAGS+="-m64"
     3394                        CXXFLAGS+="-m64"
     3395                        CFAFLAGS+="-m64"
     3396                        LDFLAGS+="-m64"
     3397                        ;;
     3398        esac
     3399fi
     3400
     3401
     3402cat >>confdefs.h <<_ACEOF
     3403#define CFA_FLAGS "${CFAFLAGS}"
     3404_ACEOF
     3405
     3406CFA_FLAGS=${CFAFLAGS}
    33843407
    33853408
Note: See TracChangeset for help on using the changeset viewer.