This is the mail archive of the
libffi-discuss@sourceware.org
mailing list for the libffi project.
Re: problem for UltraSPARC-IIi
- From: Anthony Green <green at moxielogic dot com>
- To: Shigeharu TAKENO <shige at iee dot niit dot ac dot jp>
- Cc: "libffi-discuss at sourceware dot org" <libffi-discuss at sourceware dot org>
- Date: Sat, 9 Nov 2013 06:19:15 -0500
- Subject: Re: problem for UltraSPARC-IIi
- Authentication-results: sourceware.org; auth=none
- References: <201311090649 dot rA96nFRF002304 at pc98tak dot iee dot niit dot ac dot jp>
Thanks! The file to fix here is actually m4/ax_gcc_archflag.m4, which
comes from the upstream autoconf-archive project. I've made the
change here and rebuilt configure. I've also reported the bug along
with your patch to the autoconf-archive project.
AG
On Sat, Nov 9, 2013 at 1:49 AM, Shigeharu TAKENO <shige@iee.niit.ac.jp> wrote:
> shige 11/09 2013
> ----------------
>
> I use Solaris 10 on an UltraSPARC-IIi machine. The configure
> script of libffi-3.0.13 recognizes the cpu to ultrasparc3, but it
> is not correct because "UltraSPARC-IIi" should be identified as
> ultrasparc (IIi is not III). The following patch may fix the
> problem.
>
> ----- From here -----
> diff -uN libffi-3.0.13/configure.ORG libffi-3.0.13/configure
> --- libffi-3.0.13/configure.ORG 2013-03-18 07:36:19.000000000 +0900
> +++ libffi-3.0.13/configure 2013-11-08 18:55:24.797500000 +0900
> @@ -12811,7 +12811,7 @@
>
>
> cputype=`(((grep cpu /proc/cpuinfo | cut -d: -f2) ; ($PRTDIAG -v |grep -i sparc) ; grep -i cpu /var/run/dmesg.boot ) | head -n 1) 2> /dev/null`
> - cputype=`echo "$cputype" | tr -d ' -' |tr $as_cr_LETTERS $as_cr_letters`
> + cputype=`echo "$cputype" | tr -d ' -' | sed 's/SPARCIIi/SPARCII/' |tr $as_cr_LETTERS $as_cr_letters`
> case $cputype in
> *ultrasparciv*) ax_gcc_arch="ultrasparc4 ultrasparc3 ultrasparc v9" ;;
> *ultrasparciii*) ax_gcc_arch="ultrasparc3 ultrasparc v9" ;;
> ----- To here -----
>
> +========================================================+
> Shigeharu TAKENO NIigata Institute of Technology
> kashiwazaki,Niigata 945-1195 JAPAN
> shige@iee.niit.ac.jp TEL(&FAX): +81-257-22-8161
> +========================================================+