Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r575a6e5 rae628e1  
    668668LIBCFA_TARGET_DIRS
    669669TARGET_HOSTS
     670HOST_FLAGS
    670671host_os
    671672host_vendor
     
    32343235                cfa_prefix=${prefix}
    32353236        fi
     3237        cfa_prefix="$(readlink -f ${cfa_prefix})/"
    32363238
    32373239cat >>confdefs.h <<_ACEOF
     
    32473249                cfa_incdir=${includedir}
    32483250        fi
     3251        cfa_incdir="$(readlink -f ${cfa_incdir})/"
    32493252
    32503253cat >>confdefs.h <<_ACEOF
     
    32603263                cfa_bindir=${bindir}
    32613264        fi
     3265        cfa_bindir="$(readlink -f ${cfa_bindir})/"
    32623266
    32633267cat >>confdefs.h <<_ACEOF
     
    32773281                cfa_libdir="${libdir}/${ARCHITECTURE}${CONFIGURATION}"
    32783282        fi
     3283        cfa_libdir="$(readlink -f ${cfa_libdir})/"
    32793284
    32803285cat >>confdefs.h <<_ACEOF
     
    32893294# Create variables for commonly used targets
    32903295
    3291 TOP_SRCDIR=$ac_pwd/$ac_confdir/
    3292 TOP_BUILDDIR=$ac_pwd/
     3296TOP_SRCDIR="$(readlink -f $ac_confdir/)/"
     3297TOP_BUILDDIR="$(readlink -f $ac_pwd/)/"
    32933298
    32943299
     
    34073412
    34083413
     3414if ! test "$host_cpu" = "$build_cpu"; then
     3415        case $host_cpu in
     3416                i386)
     3417                        HOST_FLAGS="-m32"
     3418                        ;;
     3419                i686)
     3420                        HOST_FLAGS="-m32"
     3421                        ;;
     3422                x86_64)
     3423                        HOST_FLAGS="-m64"
     3424                        ;;
     3425        esac
     3426fi
     3427
     3428
    34093429default_target="${host_cpu}:debug, ${host_cpu}:nodebug"
    34103430
     
    34383458        esac
    34393459
     3460
     3461        case $arch_name in
     3462                "host") arch_name=${host_cpu};;
     3463                *) ;;
     3464        esac
    34403465
    34413466        case $arch_name in
     
    34723497
    34733498
     3499
     3500        case $arch_name in
     3501                "host") arch_name=${host_cpu};;
     3502                *) ;;
     3503        esac
    34743504
    34753505        case $arch_name in
Note: See TracChangeset for help on using the changeset viewer.