This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

config-ml.in AIX multilibs


	The following patch allows the aix64 and pthread multilibs on AIX
to be disabled individually.  The aix64 control currently is needed to
allow V3 to configure on a 32-bit host.

	This has been applied to both the trunk and the release branch
with Alex and Mark's approval.

David


	* config-ml.in (powerpc-*-* | rs6000-*-*): Allow aix64 and pthread
	multilibs to be disabled.

Index: config-ml.in
===================================================================
RCS file: /cvs/gcc/egcs/config-ml.in,v
retrieving revision 1.18
diff -c -p -r1.18 config-ml.in
*** config-ml.in	2001/03/21 23:55:58	1.18
--- config-ml.in	2001/06/13 02:05:43
*************** mips*-*-*)
*** 392,397 ****
--- 392,419 ----
  	esac
  	;;
  powerpc*-*-* | rs6000*-*-*)
+ 	if [ x$enable_aix64 = xno ]
+ 	then
+ 	  old_multidirs="${multidirs}"
+ 	  multidirs=""
+ 	  for x in ${old_multidirs}; do
+ 	    case "$x" in
+ 	      *ppc64* ) : ;;
+ 	      *) multidirs="${multidirs} ${x}" ;;
+ 	    esac
+ 	  done
+ 	fi
+ 	if [ x$enable_pthread = xno ]
+ 	then
+ 	  old_multidirs="${multidirs}"
+ 	  multidirs=""
+ 	  for x in ${old_multidirs}; do
+ 	    case "$x" in
+ 	      *pthread* ) : ;;
+ 	      *) multidirs="${multidirs} ${x}" ;;
+ 	    esac
+ 	  done
+ 	fi
  	if [ x$enable_softfloat = xno ]
  	then
  	  old_multidirs="${multidirs}"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]