SHA256
3
0
forked from pool/binutils

Accepting request 568195 from devel:gcc

- Add riscv64 to %target_list (forwarded request 568059 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/568195
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/binutils?expand=0&rev=122
This commit is contained in:
Dominique Leuenberger 2018-01-26 12:33:29 +00:00 committed by Git OBS Bridge
commit 77326d5505
44 changed files with 440 additions and 44 deletions

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package binutils # spec file for package binutils
# #
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2018 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
@ -63,7 +63,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -399,6 +399,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package cross-riscv64-binutils # spec file for package cross-riscv64-binutils
# #
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Jan 22 09:40:25 UTC 2018 - schwab@suse.de
- Add riscv64 to %target_list
-------------------------------------------------------------------
Wed Jan 17 11:28:03 UTC 2018 - afaerber@suse.de
- Add arm-none-eabi symlinks (bsc#1074741)
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com Mon Oct 2 19:29:22 UTC 2017 - matz@suse.com

View File

@ -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) 2018 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
@ -66,7 +66,7 @@ Release: 0
%else %else
%define build_multitarget 0 %define build_multitarget 0
%endif %endif
%define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le s390 s390x sh4 sparc sparc64 x86_64 %define target_list aarch64 alpha armv5l armv6l armv7l armv8l hppa hppa64 i686 ia64 m68k mips powerpc powerpc64 powerpc64le riscv64 s390 s390x sh4 sparc sparc64 x86_64
# #
# #
# #
@ -402,6 +402,14 @@ T=$(basename %buildroot/usr/%{TARGET_OS})
for f in %buildroot/usr/$T/bin/* ; do for f in %buildroot/usr/$T/bin/* ; do
ln -sf /usr/bin/$T-$(basename $f) $f ln -sf /usr/bin/$T-$(basename $f) $f
done done
%if "%{TARGET}" == "arm"
# Instead of building duplicate binutils, add symlinks
for f in %buildroot/usr/$T/bin/* ; do
for p in arm-none-eabi; do
ln -sf %{_bindir}/$T-$(basename $f) %buildroot%{_bindir}/$p-$(basename $f)
done
done
%endif
%if "%{TARGET}" == "avr" %if "%{TARGET}" == "avr"
install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as install -c gas-nesc/as-new $RPM_BUILD_ROOT%{_prefix}/bin/%{TARGET_OS}-nesc-as
ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as ln -sf ../../bin/%{TARGET_OS}-nesc-as $RPM_BUILD_ROOT%{_prefix}/%{TARGET_OS}/bin/nesc-as