forked from pool/binutils
Accepting request 448196 from openSUSE:Factory:zSystems
Added s390x to the list of architectures that get built. OBS-URL: https://build.opensuse.org/request/show/448196 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/binutils?expand=0&rev=225
This commit is contained in:
parent
ca89863d6e
commit
662ed82bb8
@ -1,110 +0,0 @@
|
|||||||
From 7ea12e5c3ad54da440c08f32da09534e63e515ca Mon Sep 17 00:00:00 2001
|
|
||||||
From: Nick Clifton <nickc@redhat.com>
|
|
||||||
Date: Fri, 5 Aug 2016 10:37:57 +0100
|
|
||||||
Subject: [PATCH] Fix the generation of alignment frags in code sections for
|
|
||||||
AArch64.
|
|
||||||
|
|
||||||
PR gas/20364
|
|
||||||
* config/tc-aarch64.c (s_ltorg): Change the mapping state after
|
|
||||||
aligning the frag.
|
|
||||||
(aarch64_init): Treat rs_align frags in code sections as
|
|
||||||
containing code, not data.
|
|
||||||
* testsuite/gas/aarch64/pr20364.s: New test.
|
|
||||||
* testsuite/gas/aarch64/pr20364.d: New test driver.
|
|
||||||
---
|
|
||||||
gas/ChangeLog | 10 ++++++++++
|
|
||||||
gas/config/tc-aarch64.c | 10 +++++++---
|
|
||||||
gas/testsuite/gas/aarch64/pr20364.d | 13 +++++++++++++
|
|
||||||
gas/testsuite/gas/aarch64/pr20364.s | 28 ++++++++++++++++++++++++++++
|
|
||||||
4 files changed, 58 insertions(+), 3 deletions(-)
|
|
||||||
create mode 100644 gas/testsuite/gas/aarch64/pr20364.d
|
|
||||||
create mode 100644 gas/testsuite/gas/aarch64/pr20364.s
|
|
||||||
|
|
||||||
Index: binutils-2.27/gas/config/tc-aarch64.c
|
|
||||||
===================================================================
|
|
||||||
--- binutils-2.27.orig/gas/config/tc-aarch64.c
|
|
||||||
+++ binutils-2.27/gas/config/tc-aarch64.c
|
|
||||||
@@ -1736,13 +1736,13 @@ s_ltorg (int ignored ATTRIBUTE_UNUSED)
|
|
||||||
if (pool == NULL || pool->symbol == NULL || pool->next_free_entry == 0)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
- mapping_state (MAP_DATA);
|
|
||||||
-
|
|
||||||
/* Align pool as you have word accesses.
|
|
||||||
Only make a frag if we have to. */
|
|
||||||
if (!need_pass_2)
|
|
||||||
frag_align (align, 0, 0);
|
|
||||||
|
|
||||||
+ mapping_state (MAP_DATA);
|
|
||||||
+
|
|
||||||
record_alignment (now_seg, align);
|
|
||||||
|
|
||||||
sprintf (sym_name, "$$lit_\002%x", pool->id);
|
|
||||||
@@ -6373,11 +6373,15 @@ aarch64_init_frag (fragS * fragP, int ma
|
|
||||||
|
|
||||||
switch (fragP->fr_type)
|
|
||||||
{
|
|
||||||
- case rs_align:
|
|
||||||
case rs_align_test:
|
|
||||||
case rs_fill:
|
|
||||||
mapping_state_2 (MAP_DATA, max_chars);
|
|
||||||
break;
|
|
||||||
+ case rs_align:
|
|
||||||
+ /* PR 20364: We can get alignment frags in code sections,
|
|
||||||
+ so do not just assume that we should use the MAP_DATA state. */
|
|
||||||
+ mapping_state_2 (subseg_text_p (now_seg) ? MAP_INSN : MAP_DATA, max_chars);
|
|
||||||
+ break;
|
|
||||||
case rs_align_code:
|
|
||||||
mapping_state_2 (MAP_INSN, max_chars);
|
|
||||||
break;
|
|
||||||
Index: binutils-2.27/gas/testsuite/gas/aarch64/pr20364.d
|
|
||||||
===================================================================
|
|
||||||
--- /dev/null
|
|
||||||
+++ binutils-2.27/gas/testsuite/gas/aarch64/pr20364.d
|
|
||||||
@@ -0,0 +1,13 @@
|
|
||||||
+# Check that ".align <size>, <fill>" does not set the mapping state to DATA, causing unnecessary frag generation.
|
|
||||||
+#name: PR20364
|
|
||||||
+#objdump: -d
|
|
||||||
+
|
|
||||||
+.*: file format .*
|
|
||||||
+
|
|
||||||
+Disassembly of section \.vectors:
|
|
||||||
+
|
|
||||||
+0+000 <.*>:
|
|
||||||
+ 0: d2800000 mov x0, #0x0 // #0
|
|
||||||
+ 4: 94000000 bl 0 <plat_report_exception>
|
|
||||||
+ 8: 17fffffe b 0 <bl1_exceptions>
|
|
||||||
+
|
|
||||||
Index: binutils-2.27/gas/testsuite/gas/aarch64/pr20364.s
|
|
||||||
===================================================================
|
|
||||||
--- /dev/null
|
|
||||||
+++ binutils-2.27/gas/testsuite/gas/aarch64/pr20364.s
|
|
||||||
@@ -0,0 +1,28 @@
|
|
||||||
+ .macro vector_base label
|
|
||||||
+ .section .vectors, "ax"
|
|
||||||
+ .align 11, 0
|
|
||||||
+ \label:
|
|
||||||
+ .endm
|
|
||||||
+
|
|
||||||
+ .macro vector_entry label
|
|
||||||
+ .section .vectors, "ax"
|
|
||||||
+ .align 7, 0
|
|
||||||
+ \label:
|
|
||||||
+ .endm
|
|
||||||
+
|
|
||||||
+ .macro check_vector_size since
|
|
||||||
+ .if (. - \since) > (32 * 4)
|
|
||||||
+ .error "Vector exceeds 32 instructions"
|
|
||||||
+ .endif
|
|
||||||
+ .endm
|
|
||||||
+
|
|
||||||
+ .globl bl1_exceptions
|
|
||||||
+
|
|
||||||
+vector_base bl1_exceptions
|
|
||||||
+
|
|
||||||
+vector_entry SynchronousExceptionSP0
|
|
||||||
+ mov x0, #0x0
|
|
||||||
+ bl plat_report_exception
|
|
||||||
+ b SynchronousExceptionSP0
|
|
||||||
+ check_vector_size SynchronousExceptionSP0
|
|
||||||
+
|
|
@ -1,13 +1,7 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
Thu Dec 29 17:56:00 UTC 2016 - mpost@suse.com
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
- Added s390x to the list of architectures that get built.
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package binutils
|
# spec file for package binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -100,7 +100,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -121,7 +120,7 @@ Requires: binutils = %{version}-%{release}
|
|||||||
PreReq: update-alternatives
|
PreReq: update-alternatives
|
||||||
%if 0%{suse_version} > 1100
|
%if 0%{suse_version} > 1100
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le %sparc
|
%define gold_archs %ix86 aarch64 %arm x86_64 ppc ppc64 ppc64le s390x %sparc
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -178,7 +177,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -413,7 +411,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -441,8 +438,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-aarch64-binutils
|
# spec file for package cross-aarch64-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-arm-binutils
|
# spec file for package cross-arm-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-avr-binutils
|
# spec file for package cross-avr-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-epiphany-binutils
|
# spec file for package cross-epiphany-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-hppa-binutils
|
# spec file for package cross-hppa-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-hppa64-binutils
|
# spec file for package cross-hppa64-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-i386-binutils
|
# spec file for package cross-i386-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-ia64-binutils
|
# spec file for package cross-ia64-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-m68k-binutils
|
# spec file for package cross-m68k-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-mips-binutils
|
# spec file for package cross-mips-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-ppc-binutils
|
# spec file for package cross-ppc-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-ppc64-binutils
|
# spec file for package cross-ppc64-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-ppc64le-binutils
|
# spec file for package cross-ppc64le-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-rx-binutils
|
# spec file for package cross-rx-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-s390-binutils
|
# spec file for package cross-s390-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-s390x-binutils
|
# spec file for package cross-s390x-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-sparc-binutils
|
# spec file for package cross-sparc-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-sparc64-binutils
|
# spec file for package cross-sparc64-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-spu-binutils
|
# spec file for package cross-spu-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Mon Feb 6 15:25:44 UTC 2017 - afaerber@suse.de
|
|
||||||
|
|
||||||
- Fix alignment frags for aarch64 (boo#1003846)
|
|
||||||
aarch64-alignment-frags.patch
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Sun Dec 18 18:36:08 UTC 2016 - jengelh@inai.de
|
|
||||||
|
|
||||||
- Call ldconfig for libbfd
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
Tue Nov 30 09:55:02 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-x86_64-binutils
|
# spec file for package cross-x86_64-binutils
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -103,7 +103,6 @@ Patch22: binutils-bfd_h.patch
|
|||||||
Patch23: binutils-2.27-fix-section-order.diff
|
Patch23: binutils-2.27-fix-section-order.diff
|
||||||
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
Patch24: refine_.cfi_sections_check_to_only_consider_compact_eh_frame.patch
|
||||||
Patch34: aarch64-common-pagesize.patch
|
Patch34: aarch64-common-pagesize.patch
|
||||||
Patch35: aarch64-alignment-frags.patch
|
|
||||||
Patch90: cross-avr-nesc-as.patch
|
Patch90: cross-avr-nesc-as.patch
|
||||||
Patch92: cross-avr-omit_section_dynsym.patch
|
Patch92: cross-avr-omit_section_dynsym.patch
|
||||||
Patch93: cross-avr-size.patch
|
Patch93: cross-avr-size.patch
|
||||||
@ -181,7 +180,6 @@ echo "make check will return with %{make_check_handling} in case of testsuite fa
|
|||||||
%patch23 -p1
|
%patch23 -p1
|
||||||
%patch24 -p1
|
%patch24 -p1
|
||||||
%patch34 -p1
|
%patch34 -p1
|
||||||
%patch35 -p1
|
|
||||||
%if "%{TARGET}" == "avr"
|
%if "%{TARGET}" == "avr"
|
||||||
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
cp gas/config/tc-avr.h gas/config/tc-avr-nesc.h
|
||||||
%patch90
|
%patch90
|
||||||
@ -416,7 +414,6 @@ rm -f $RPM_BUILD_ROOT%{_prefix}/bin/*-c++filt
|
|||||||
|
|
||||||
%if 0%{!?cross:1}
|
%if 0%{!?cross:1}
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
|
||||||
"%_sbindir/update-alternatives" --install \
|
"%_sbindir/update-alternatives" --install \
|
||||||
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
"%_bindir/ld" ld "%_bindir/ld.bfd" 2
|
||||||
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
%install_info --info-dir=%{_infodir} %{_infodir}/as.info.gz
|
||||||
@ -444,8 +441,6 @@ if [ "$1" = 0 ]; then
|
|||||||
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.gold";
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%postun
|
|
||||||
/sbin/ldconfig
|
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -f binutils.lang
|
%files -f binutils.lang
|
||||||
|
Loading…
x
Reference in New Issue
Block a user