Ignore:
Timestamp:
2008-05-30T12:01:05+12:00 (16 years ago)
Author:
ak19
Message:

Dr Bainbridge updated the configure and makefiles for GS3 gs2build with 1. COMP32bitFlag stuff and 2. CPP -> CXX stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/trunk/gs2build-extra/configure.in

    r15295 r15819  
    4747AC_PROG_MAKE_SET
    4848AC_PROG_RANLIB
     49
     50
     51AC_MSG_CHECKING(to see if architecture is 64-bit)
     52arch_64bit=no
     53case "$host_cpu" in
     54x86_64) arch_64bit=yes ;;
     55esac
     56
     57if test "$arch_64bit" = yes; then
     58  AC_MSG_RESULT(yes)
     59  if test -z "$COMPAT32BITFLAGS" ; then
     60    COMPAT32BITFLAGS="-m32"
     61  fi
     62else
     63  AC_MSG_RESULT(no)
     64  if test -z "$COMPAT32BITFLAGS" ; then
     65    COMPAT32BITFLAGS=
     66  fi
     67fi
     68export COMPAT32BITFLAGS
     69AC_SUBST(COMPAT32BITFLAGS)
     70
    4971
    5072dnl Checks for typedefs, structures, and compiler characteristics.
Note: See TracChangeset for help on using the changeset viewer.