patchGNU Autoconf Archive - Patches: patch #8235, ax_gcc_archflag.m4 recognizes...

 
 

patch #8235: ax_gcc_archflag.m4 recognizes ultrasparc IIi as ultrasparc3, which is wrong

Submitter:  None
Submitted:  Sat 09 Nov 2013 11:01:20 AM UTC
   
 
Priority:  5 - Normal Status:  Done
Assigned to:  simons Originator Email:  -email is unavailable-
Open/Closed:  Closed
* Mandatory Fields

Add a New Comment Rich Markup
   

Tue 10 Dec 2013 08:56:34 PM UTC, comment #2: 

Pushed commit c7d7dedf0402b260c15c175f66a9273494aca2f3. Thank you very much for the patch!

Peter Simons <simons>
Group administrator
Mon 11 Nov 2013 07:40:54 PM UTC, comment #1: 

This patch adds a dependency on "sed", so I guess that AC_REQUIRE([AC_PROG_SED]) should be added, too.

Steven, how do you feel about this change?

(file #29597)

Peter Simons <simons>
Group administrator
Sat 09 Nov 2013 11:01:20 AM UTC, original submission:  

This problem was reported to the libffi project, along with a proposed patch.

https://sourceware.org/ml/libffi-discuss/2013/msg00196.html

Shigeharu TAKENO -email is unavailable- via sourceware.org

1:49 AM (4 hours ago)

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

Anonymous

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

Attached Files
file #29597:  ax_gcc_archflag.patch added by simons (1KiB - application/octet-stream - Cleaned-up patch file.)

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by simons (Updated the item)
  • -email is unavailable- added by simons
  • -email is unavailable- added by None (Submitted the item)
  •  

    Follow 6 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2014-02-07 simons StatusReady For Test Done
        Open/ClosedOpen Closed
    2013-11-11 simons Attached File- Added ax_gcc_archflag.patch, #29597
        StatusNone Ready For Test
        Assigned toNone simons
    2013-11-11 simons Carbon-Copy- Added steven g. johnson <stevenj@alum.mit.edu>

    Back to the top

    Powered by Savane 3.13-758e.
    Corresponding source code