Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 933441 Details for
Bug 1136050
add ppc64le as supported architecture for crash package
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
crash-gdb-7.6-update-autoconf-2013-04-24.patch
crash-gdb-7.6-update-autoconf-2013-04-24.patch (text/plain), 5.36 KB, created by
Michel Normand
on 2014-09-01 14:26:18 UTC
(
hide
)
Description:
crash-gdb-7.6-update-autoconf-2013-04-24.patch
Filename:
MIME Type:
Creator:
Michel Normand
Created:
2014-09-01 14:26:18 UTC
Size:
5.36 KB
patch
obsolete
>From: Jan-Benedict Glaw <jbglaw@lug-owl.de> >Date: Mon Apr 29 15:13:53 2013 +0000 >Git-commit: 5dad867ccace0a74c90b729372c9c01392756875 >References: ppc64le enablement > > * config.guess: Update from config repo. > * config.sub: Ditto. > >Acked-by: Petr Tesarik <ptesarik@suse.cz> > >--- > ChangeLog | 5 +++++ > config.guess | 25 +++++++++++++++++-------- > config.sub | 23 +++++++++++------------ > 3 files changed, 33 insertions(+), 20 deletions(-) > >--- a/ChangeLog >+++ b/ChangeLog >@@ -1,3 +1,8 @@ >+2013-04-29 Jan-Benedict Glaw <jbglaw@lug-owl.de> >+ >+ * config.guess: Update from config repo. >+ * config.sub: Ditto. >+ > 2013-02-15 Yufeng Zhang <yufeng.zhang@arm.com> > > * configure.ac: Sync with GCC repo. >--- a/config.guess >+++ b/config.guess >@@ -1,10 +1,8 @@ > #! /bin/sh > # Attempt to guess a canonical system name. >-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, >-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, >-# 2011, 2012, 2013 Free Software Foundation, Inc. >+# Copyright 1992-2013 Free Software Foundation, Inc. > >-timestamp='2012-12-30' >+timestamp='2013-04-24' > > # This file is free software; you can redistribute it and/or modify it > # under the terms of the GNU General Public License as published by >@@ -52,9 +50,7 @@ version="\ > GNU config.guess ($timestamp) > > Originally written by Per Bothner. >-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, >-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, >-2012, 2013 Free Software Foundation, Inc. >+Copyright 1992-2013 Free Software Foundation, Inc. > > This is free software; see the source for copying conditions. There is NO > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." >@@ -887,6 +883,9 @@ EOF > if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi > echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} > exit ;; >+ arc:Linux:*:* | arceb:Linux:*:*) >+ echo ${UNAME_MACHINE}-unknown-linux-gnu >+ exit ;; > arm*:Linux:*:*) > eval $set_cc_for_build > if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ >@@ -925,6 +924,11 @@ EOF > #ifdef __dietlibc__ > LIBC=dietlibc > #endif >+ #else >+ #include <features.h> >+ #ifdef __UCLIBC__ >+ LIBC=uclibc >+ #endif > EOF > eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` > echo "${UNAME_MACHINE}-pc-linux-${LIBC}" >@@ -957,6 +961,9 @@ EOF > eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` > test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } > ;; >+ or1k:Linux:*:*) >+ echo ${UNAME_MACHINE}-unknown-linux-gnu >+ exit ;; > or32:Linux:*:*) > echo ${UNAME_MACHINE}-unknown-linux-gnu > exit ;; >@@ -999,7 +1006,9 @@ EOF > echo ${UNAME_MACHINE}-dec-linux-gnu > exit ;; > x86_64:Linux:*:*) >- echo ${UNAME_MACHINE}-unknown-linux-gnu >+ LIBC=gnu >+ test -r /lib/libc.so && od -An -S13 /lib/libc.so | grep -q __uClibc_main && LIBC=uclibc >+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC} > exit ;; > xtensa*:Linux:*:*) > echo ${UNAME_MACHINE}-unknown-linux-gnu >--- a/config.sub >+++ b/config.sub >@@ -1,10 +1,8 @@ > #! /bin/sh > # Configuration validation subroutine script. >-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, >-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, >-# 2011, 2012, 2013 Free Software Foundation, Inc. >+# Copyright 1992-2013 Free Software Foundation, Inc. > >-timestamp='2013-01-11' >+timestamp='2013-04-24' > > # This file is free software; you can redistribute it and/or modify it > # under the terms of the GNU General Public License as published by >@@ -70,9 +68,7 @@ Report bugs and patches to <config-patch > version="\ > GNU config.sub ($timestamp) > >-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, >-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, >-2012, 2013 Free Software Foundation, Inc. >+Copyright 1992-2013 Free Software Foundation, Inc. > > This is free software; see the source for copying conditions. There is NO > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." >@@ -256,7 +252,7 @@ case $basic_machine in > | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ > | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ > | am33_2.0 \ >- | arc \ >+ | arc | arceb \ > | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ > | avr | avr32 \ > | be32 | be64 \ >@@ -297,10 +293,10 @@ case $basic_machine in > | mt \ > | msp430 \ > | nds32 | nds32le | nds32be \ >- | nios | nios2 \ >+ | nios | nios2 | nios2eb | nios2el \ > | ns16k | ns32k \ > | open8 \ >- | or32 \ >+ | or1k | or32 \ > | pdp10 | pdp11 | pj | pjl \ > | powerpc | powerpc64 | powerpc64le | powerpcle \ > | pyramid \ >@@ -370,7 +366,7 @@ case $basic_machine in > | aarch64-* | aarch64_be-* \ > | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ > | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ >- | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ >+ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ > | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ > | avr-* | avr32-* \ > | be32-* | be64-* \ >@@ -414,7 +410,7 @@ case $basic_machine in > | mt-* \ > | msp430-* \ > | nds32-* | nds32le-* | nds32be-* \ >- | nios-* | nios2-* \ >+ | nios-* | nios2-* | nios2eb-* | nios2el-* \ > | none-* | np1-* | ns16k-* | ns32k-* \ > | open8-* \ > | orion-* \ >@@ -1593,6 +1589,9 @@ case $basic_machine in > mips*-*) > os=-elf > ;; >+ or1k-*) >+ os=-elf >+ ;; > or32-*) > os=-coff > ;;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1136050
:
933432
|
933434
|
933435
|
933436
|
933437
|
933438
|
933439
|
933440
| 933441 |
933445
|
933446
|
933448