public inbox for libffi-discuss@sourceware.org
 help / color / mirror / Atom feed
* problem for UltraSPARC-IIi
@ 2013-11-09  6:49 Shigeharu TAKENO
  2013-11-09 11:19 ` Anthony Green
  0 siblings, 1 reply; 2+ messages in thread
From: Shigeharu TAKENO @ 2013-11-09  6:49 UTC (permalink / raw)
  To: libffi-discuss

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
+========================================================+

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: problem for UltraSPARC-IIi
  2013-11-09  6:49 problem for UltraSPARC-IIi Shigeharu TAKENO
@ 2013-11-09 11:19 ` Anthony Green
  0 siblings, 0 replies; 2+ messages in thread
From: Anthony Green @ 2013-11-09 11:19 UTC (permalink / raw)
  To: Shigeharu TAKENO; +Cc: libffi-discuss

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
> +========================================================+

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-11-09 11:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-09  6:49 problem for UltraSPARC-IIi Shigeharu TAKENO
2013-11-09 11:19 ` Anthony Green

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).