forked from pool/binutils
Accepting request 407069 from devel:gcc
- Update to binutils 2.26.1. - Remove binutils-2.26-branch.diff. - Update binutils-2.26-branch.diff, updates to branch head. (swo#19807) (bnc#970239) - Disable -mrelax-relocations by default on old products. OBS-URL: https://build.opensuse.org/request/show/407069 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/binutils?expand=0&rev=110
This commit is contained in:
commit
217c329cb9
File diff suppressed because it is too large
Load Diff
3
binutils-2.26.1.tar.bz2
Normal file
3
binutils-2.26.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:39c346c87aa4fb14b2f786560aec1d29411b6ec34dce3fe7309fe3dd56949fd8
|
||||||
|
size 25595243
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c2ace41809542f5237afc7e3b8f32bb92bc7bc53c6232a84463c423b0714ecd9
|
|
||||||
size 25543552
|
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -82,7 +82,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -151,10 +151,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -246,6 +246,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -301,6 +304,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 6 11:28:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update to binutils 2.26.1.
|
||||||
|
- Remove binutils-2.26-branch.diff.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 18 07:57:51 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
- Update binutils-2.26-branch.diff, updates to branch head.
|
||||||
|
(swo#19807) (bnc#970239)
|
||||||
|
- Disable -mrelax-relocations by default on old products.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
Wed Mar 9 11:11:48 UTC 2016 - rguenther@suse.com
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ BuildRequires: zlib-devel-static
|
|||||||
%else
|
%else
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
%endif
|
%endif
|
||||||
Version: 2.26
|
Version: 2.26.1
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
# RUN_TESTS
|
# RUN_TESTS
|
||||||
@ -85,7 +85,7 @@ Source: binutils-%{binutils_version}.tar.bz2
|
|||||||
Source1: pre_checkin.sh
|
Source1: pre_checkin.sh
|
||||||
Source2: README.First-for.SuSE.packagers
|
Source2: README.First-for.SuSE.packagers
|
||||||
Source3: baselibs.conf
|
Source3: baselibs.conf
|
||||||
Patch: binutils-2.26-branch.diff
|
#Patch: binutils-2.26-branch.diff
|
||||||
Patch3: binutils-skip-rpaths.patch
|
Patch3: binutils-skip-rpaths.patch
|
||||||
Patch4: s390-biarch.diff
|
Patch4: s390-biarch.diff
|
||||||
Patch5: x86-64-biarch.patch
|
Patch5: x86-64-biarch.patch
|
||||||
@ -154,10 +154,10 @@ binutils.
|
|||||||
%prep
|
%prep
|
||||||
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
echo "make check will return with %{make_check_handling} in case of testsuite failures."
|
||||||
%setup -q -n binutils-%{binutils_version}
|
%setup -q -n binutils-%{binutils_version}
|
||||||
# Patch1 is outside test_vanilla because it's supposed to be the
|
# Patch is outside test_vanilla because it's supposed to be the
|
||||||
# patch bringing the tarball to the newest upstream version
|
# patch bringing the tarball to the newest upstream version
|
||||||
|
#%patch -p1
|
||||||
%if !%{test_vanilla}
|
%if !%{test_vanilla}
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4
|
||||||
%patch5
|
%patch5
|
||||||
@ -249,6 +249,9 @@ cd build-dir
|
|||||||
%ifarch %gold_archs
|
%ifarch %gold_archs
|
||||||
--enable-gold \
|
--enable-gold \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
|
%endif
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
%endif
|
%endif
|
||||||
--enable-shared
|
--enable-shared
|
||||||
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
make %{?_smp_mflags} all-bfd TARGET-bfd=headers
|
||||||
@ -304,6 +307,9 @@ EXTRA_TARGETS="$EXTRA_TARGETS,aarch64-suse-linux"
|
|||||||
--with-bugurl=http://bugs.opensuse.org/ \
|
--with-bugurl=http://bugs.opensuse.org/ \
|
||||||
--with-pkgversion="GNU Binutils; %{DIST}" \
|
--with-pkgversion="GNU Binutils; %{DIST}" \
|
||||||
--disable-nls \
|
--disable-nls \
|
||||||
|
%if %{suse_version} <= 1320
|
||||||
|
--disable-x86-relax-relocations \
|
||||||
|
%endif
|
||||||
--build=%{HOST} --target=%{TARGET_OS} \
|
--build=%{HOST} --target=%{TARGET_OS} \
|
||||||
%if "%{TARGET}" == "spu"
|
%if "%{TARGET}" == "spu"
|
||||||
--with-sysroot=/usr/spu \
|
--with-sysroot=/usr/spu \
|
||||||
|
Loading…
Reference in New Issue
Block a user