Accepting request 898551 from home:dirkmueller:Factory
- tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, needed by arm-trusted-firmware - tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, needed by arm-trusted-firmware - tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, needed by arm-trusted-firmware - tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, needed by arm-trusted-firmware - tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, needed by arm-trusted-firmware - tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, needed by arm-trusted-firmware - tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, needed by arm-trusted-firmware - tune armv7 to generic-armv7-a - enable build for arm-none cross builders in rings, OBS-URL: https://build.opensuse.org/request/show/898551 OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gcc11?expand=0&rev=350
This commit is contained in:
parent
3804f016ed
commit
cd57dbd044
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-aarch64-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-amdgcn-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-arm-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-arm-none-gcc11-bootstrap
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -24,6 +24,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -32,10 +33,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -123,6 +125,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -147,6 +150,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -236,8 +241,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -275,10 +280,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -580,7 +583,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -798,7 +801,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-arm-none-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-avr-gcc11-bootstrap
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-avr-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-epiphany-gcc11-bootstrap
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -24,6 +24,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -32,10 +33,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -123,6 +125,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -147,6 +150,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -236,8 +241,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -275,10 +280,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -580,7 +583,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -798,7 +801,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-epiphany-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-hppa-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-i386-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-m68k-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-mips-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-nvptx-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-ppc64-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-ppc64le-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-riscv64-elf-gcc11-bootstrap
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -24,6 +24,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -32,10 +33,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -123,6 +125,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -147,6 +150,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -236,8 +241,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -252,7 +257,7 @@ ExclusiveArch: do-not-build
|
||||
%endif
|
||||
%endif
|
||||
%if 0%{?gcc_icecream:1}
|
||||
ExclusiveArch: ppc64le ppc64 x86_64 s390x aarch64
|
||||
ExclusiveArch: ppc64le ppc64 x86_64 s390x aarch64
|
||||
%endif
|
||||
%define _binary_payload w.ufdio
|
||||
# Obsolete cross-ppc-gcc49 from cross-ppc64-gcc49 which has
|
||||
@ -275,10 +280,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -580,7 +583,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -798,7 +801,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-riscv64-elf-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -251,7 +256,7 @@ ExclusiveArch: do-not-build
|
||||
%endif
|
||||
%endif
|
||||
%if 0%{?gcc_icecream:1}
|
||||
ExclusiveArch: ppc64le ppc64 x86_64 s390x aarch64
|
||||
ExclusiveArch: ppc64le ppc64 x86_64 s390x aarch64
|
||||
%endif
|
||||
%define _binary_payload w.ufdio
|
||||
# Obsolete cross-ppc-gcc49 from cross-ppc64-gcc49 which has
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-riscv64-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -251,7 +256,7 @@ ExclusiveArch: do-not-build
|
||||
%endif
|
||||
%endif
|
||||
%if 0%{?gcc_icecream:1}
|
||||
ExclusiveArch: ppc64le ppc64 x86_64 s390x aarch64
|
||||
ExclusiveArch: ppc64le ppc64 x86_64 s390x aarch64
|
||||
%endif
|
||||
%define _binary_payload w.ufdio
|
||||
# Obsolete cross-ppc-gcc49 from cross-ppc64-gcc49 which has
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-rx-gcc11-bootstrap
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -24,6 +24,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -32,10 +33,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -123,6 +125,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -147,6 +150,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -236,8 +241,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -275,10 +280,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -580,7 +583,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -798,7 +801,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-rx-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-s390x-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-sparc-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-sparc64-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch: x86_64
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package cross-x86_64-gcc11
|
||||
# spec file
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
@ -23,6 +23,7 @@
|
||||
#
|
||||
# spec file template for cross packages of gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -31,10 +32,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
@ -122,6 +124,7 @@ Release: 0
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -146,6 +149,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
License: GPL-3.0-or-later
|
||||
|
||||
# Define the canonical target and host architecture
|
||||
# %%gcc_target_arch is supposed to be the full target triple
|
||||
# %%cross_arch is supposed to be the rpm target variant arch
|
||||
@ -235,8 +240,8 @@ ExclusiveArch:
|
||||
%if "%{cross_arch}" == "amdgcn"
|
||||
# amdgcn uses the llvm assembler and linker, llvm-mc-12 doesn't
|
||||
# work at the moment so require llvm11
|
||||
BuildRequires: lld
|
||||
BuildRequires: llvm11
|
||||
BuildRequires: lld
|
||||
Requires: cross-amdgcn-newlib-devel >= %{version}-%{release}
|
||||
Requires: lld
|
||||
Requires: llvm11
|
||||
@ -274,10 +279,8 @@ Conflicts: cross-%{cross_arch}-gcc11
|
||||
#!BuildIgnore: gcc-PIE
|
||||
BuildRequires: update-alternatives
|
||||
Requires(post): update-alternatives
|
||||
Requires(preun): update-alternatives
|
||||
Requires(preun):update-alternatives
|
||||
Summary: The GNU Compiler Collection targeting %{cross_arch}
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
The GNU Compiler Collection as a cross-compiler targeting %{cross_arch}.
|
||||
@ -579,7 +582,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -797,7 +800,7 @@ install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-g++%{binsuffix} \
|
||||
install -s $RPM_BUILD_ROOT/%{_prefix}/bin/%{gcc_target_arch}-gcc%{binsuffix} \
|
||||
$RPM_BUILD_ROOT/env/usr/bin/gcc
|
||||
|
||||
for back in cc1 cc1plus; do
|
||||
for back in cc1 cc1plus; do
|
||||
install -s -D $RPM_BUILD_ROOT/%{targetlibsubdir}/$back \
|
||||
$RPM_BUILD_ROOT/env%{targetlibsubdir}/$back
|
||||
done
|
||||
|
@ -10,10 +10,11 @@
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
# In the staging/ring projects, we don't want to build the cross-* packages, but by default, we do:
|
||||
# In the staging/ring projects, we don't want to build the unneeded
|
||||
# cross-* packages, but by default, we do:
|
||||
%bcond_with ringdisabled
|
||||
|
||||
%if %{with ringdisabled}
|
||||
%if "%{cross_arch}" != "arm-none" && "%{cross_arch}" != "arm" && %{with ringdisabled}
|
||||
ExclusiveArch: do-not-build
|
||||
%endif
|
||||
|
||||
|
@ -1430,7 +1430,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
@ -21,6 +21,7 @@
|
||||
#
|
||||
# spec file for package gcc${version}
|
||||
#
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -357,6 +358,7 @@ Suggests: gcc11-info gcc11-locale
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -383,9 +385,8 @@ Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
Summary: Testsuite results
|
||||
License: SUSE-Public-Domain
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description
|
||||
%description
|
||||
Results from running the gcc and target library testsuites.
|
||||
|
||||
|
||||
@ -770,7 +771,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -888,14 +889,14 @@ mkdir ../testresults
|
||||
export SUSE_ASNEEDED=0
|
||||
export NO_BRP_CHECK_BYTECODE_VERSION=true
|
||||
cd obj-%{GCCDIST}
|
||||
%if 0%{?run_tests:1}
|
||||
%if 0%{?run_tests:1}
|
||||
cp `find . -name "*.sum"` ../testresults/
|
||||
cp `find . -name "*.log" \! -name "config.log" | grep -v 'acats.\?/tests' | grep -v libbacktrace` ../testresults/
|
||||
chmod 644 ../testresults/*
|
||||
%endif
|
||||
|
||||
%if 0%{?run_tests:1}
|
||||
%files
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc testresults/test_summary.txt
|
||||
%doc testresults/*.sum
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 8 08:22:22 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- tune armv7 to generic-armv7-a
|
||||
- enable build for arm-none cross builders in rings,
|
||||
needed by arm-trusted-firmware
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 25 19:21:01 UTC 2021 - Andreas Schwab <schwab@suse.de>
|
||||
|
||||
|
133
gcc11.spec
133
gcc11.spec
@ -16,8 +16,6 @@
|
||||
#
|
||||
|
||||
|
||||
# nospeccleaner
|
||||
|
||||
%if !0%{?usrmerged}
|
||||
%define _slibdir /%{_lib}
|
||||
%define slibdir /lib
|
||||
@ -339,6 +337,7 @@ Suggests: gcc11-info gcc11-locale
|
||||
%if %{suse_version} < 1310
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%endif
|
||||
Group: Development/Languages/C and C++
|
||||
Source: gcc-%{version}.tar.xz
|
||||
Source1: change_spec
|
||||
Source2: gcc11-rpmlintrc
|
||||
@ -363,9 +362,8 @@ Patch52: gcc10-foffload-default.patch
|
||||
Patch60: gcc44-textdomain.patch
|
||||
Patch61: gcc44-rename-info-files.patch
|
||||
|
||||
Summary: The GNU C Compiler and Support Files
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
Summary: The GNU C Compiler and Support Files
|
||||
|
||||
%description
|
||||
Core package for the GNU Compiler Collection, including the C language
|
||||
@ -374,11 +372,8 @@ frontend.
|
||||
Language frontends other than C are split to different sub-packages,
|
||||
namely gcc-ada, gcc-c++, gcc-fortran, gcc-obj, gcc-obj-c++ and gcc-go.
|
||||
|
||||
|
||||
|
||||
%package -n gcc11-32bit
|
||||
Summary: The GNU C Compiler 32bit support
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
Requires: gcc11 = %{version}-%{release}
|
||||
Requires: libgcc_s%{libgcc_s}-32bit >= %{version}-%{release}
|
||||
@ -405,7 +400,6 @@ This package contains 32bit support for the GNU Compiler Collection.
|
||||
|
||||
%package -n gcc11-64bit
|
||||
Summary: The GNU C Compiler 64bit support
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
Requires: gcc11 = %{version}-%{release}
|
||||
Requires: libgcc_s%{libgcc_s}-64bit >= %{version}-%{release}
|
||||
@ -439,7 +433,6 @@ Requires: glibc-devel-64bit
|
||||
%description -n gcc11-64bit
|
||||
This package contains 64bit support for the GNU Compiler Collection.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: GCC plugins development enviroment
|
||||
License: GPL-3.0-or-later
|
||||
@ -451,7 +444,6 @@ Requires: mpc-devel
|
||||
%description devel
|
||||
Files required for developing and compiling GCC plugins.
|
||||
|
||||
|
||||
%package locale
|
||||
Summary: Locale Data for the GNU Compiler Collection
|
||||
License: GPL-3.0-or-later
|
||||
@ -462,7 +454,6 @@ Requires: gcc11 = %{version}-%{release}
|
||||
Locale data for the GNU Compiler Collection (GCC) to give error message
|
||||
in the current locale.
|
||||
|
||||
|
||||
%package c++
|
||||
Summary: The GNU C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -473,6 +464,7 @@ Requires: libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix} = %{version}
|
||||
|
||||
%description c++
|
||||
This package contains the GNU compiler for C++.
|
||||
|
||||
%package c++-32bit
|
||||
Summary: The GNU C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -483,6 +475,7 @@ Requires: libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix}-32bit = %{ve
|
||||
|
||||
%description c++-32bit
|
||||
This package contains the GNU compiler for C++.
|
||||
|
||||
%package c++-64bit
|
||||
Summary: The GNU C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -494,10 +487,9 @@ Requires: libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix}-64bit = %{ve
|
||||
%description c++-64bit
|
||||
This package contains the GNU compiler for C++.
|
||||
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix}
|
||||
Summary: Include Files and Libraries mandatory for Development
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/C and C++
|
||||
Requires: glibc-devel
|
||||
Requires: libstdc++%{libstdcxx_sover} >= %{version}-%{release}
|
||||
@ -512,9 +504,10 @@ Requires: libstdc++%{libstdcxx_sover}-pp = %{version}-%{release}
|
||||
%description -n libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix}
|
||||
This package contains all the headers and libraries of the standard C++
|
||||
library. It is needed for compiling C++ code.
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix}-32bit
|
||||
Summary: Include Files and Libraries mandatory for Development
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/C and C++
|
||||
Requires: glibc-devel-32bit
|
||||
Requires: libstdc++%{libstdcxx_sover}-32bit >= %{version}-%{release}
|
||||
@ -529,9 +522,10 @@ Requires: libstdc++%{libstdcxx_sover}-pp-32bit = %{version}-%{release}
|
||||
%description -n libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix}-32bit
|
||||
This package contains all the headers and libraries of the standard C++
|
||||
library. It is needed for compiling C++ code.
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}-devel%{libdevel_suffix}-64bit
|
||||
Summary: Include Files and Libraries mandatory for Development
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/C and C++
|
||||
Requires: glibc-devel-64bit
|
||||
Requires: libstdc++%{libstdcxx_sover}-64bit >= %{version}-%{release}
|
||||
@ -565,6 +559,7 @@ Supplements: (gdb and libstdc++%{libstdcxx_sover} = %{version}-%{release})
|
||||
%description -n libstdc++%{libstdcxx_sover}-pp%{libdevel_suffix}
|
||||
This package contains pretty printers for the C++ standard library usable
|
||||
from GDB.
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}-pp%{libdevel_suffix}-32bit
|
||||
Summary: GDB pretty printers for the C++ standard library
|
||||
License: GPL-3.0-or-later
|
||||
@ -583,6 +578,7 @@ Supplements: (gdb and libstdc++%{libstdcxx_sover}-32bit = %{version}-%{releas
|
||||
%description -n libstdc++%{libstdcxx_sover}-pp%{libdevel_suffix}-32bit
|
||||
This package contains pretty printers for the C++ standard library usable
|
||||
from GDB.
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}-pp%{libdevel_suffix}-64bit
|
||||
Summary: GDB pretty printers for the C++ standard library
|
||||
License: GPL-3.0-or-later
|
||||
@ -602,10 +598,9 @@ Supplements: (gdb and libstdc++%{libstdcxx_sover}-64bit = %{version}-%{releas
|
||||
This package contains pretty printers for the C++ standard library usable
|
||||
from GDB.
|
||||
|
||||
|
||||
%package -n libgcc_s%{libgcc_s}%{libgcc_s_suffix}
|
||||
Summary: C compiler runtime library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Base
|
||||
Provides: libgcc_s%{libgcc_s} = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -618,9 +613,10 @@ Libgcc is needed for dynamically linked C programs.
|
||||
%post -n libgcc_s%{libgcc_s}%{libgcc_s_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgcc_s%{libgcc_s}%{libgcc_s_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libgcc_s%{libgcc_s}%{libgcc_s_suffix}-32bit
|
||||
Summary: C compiler runtime library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Base
|
||||
Provides: libgcc_s%{libgcc_s}-32bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -633,9 +629,10 @@ Libgcc is needed for dynamically linked C programs.
|
||||
%post -n libgcc_s%{libgcc_s}%{libgcc_s_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgcc_s%{libgcc_s}%{libgcc_s_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libgcc_s%{libgcc_s}%{libgcc_s_suffix}-64bit
|
||||
Summary: C compiler runtime library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Base
|
||||
Provides: libgcc_s%{libgcc_s}-64bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -651,7 +648,7 @@ Libgcc is needed for dynamically linked C programs.
|
||||
|
||||
%package -n libgomp%{libgomp_sover}%{libgomp_suffix}
|
||||
Summary: The GNU compiler collection OpenMP runtime library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Base
|
||||
Provides: libgomp%{libgomp_sover} = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -668,9 +665,10 @@ option.
|
||||
%post -n libgomp%{libgomp_sover}%{libgomp_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgomp%{libgomp_sover}%{libgomp_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libgomp%{libgomp_sover}%{libgomp_suffix}-32bit
|
||||
Summary: The GNU compiler collection OpenMP runtime library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Base
|
||||
Provides: libgomp%{libgomp_sover}-32bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -687,9 +685,10 @@ option.
|
||||
%post -n libgomp%{libgomp_sover}%{libgomp_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgomp%{libgomp_sover}%{libgomp_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libgomp%{libgomp_sover}%{libgomp_suffix}-64bit
|
||||
Summary: The GNU compiler collection OpenMP runtime library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Base
|
||||
Provides: libgomp%{libgomp_sover}-64bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -709,7 +708,7 @@ option.
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix}
|
||||
Summary: The standard C++ shared library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
Suggests: libstdc++%{libstdcxx_sover}-locale
|
||||
Provides: libstdc++%{libstdcxx_sover} = %{version}-%{release}
|
||||
@ -724,9 +723,10 @@ The standard C++ library, needed for dynamically linked C++ programs.
|
||||
%post -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix}-32bit
|
||||
Summary: The standard C++ shared library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
Suggests: libstdc++%{libstdcxx_sover}-locale
|
||||
Provides: libstdc++%{libstdcxx_sover}-32bit = %{version}-%{release}
|
||||
@ -741,9 +741,10 @@ The standard C++ library, needed for dynamically linked C++ programs.
|
||||
%post -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix}-64bit
|
||||
Summary: The standard C++ shared library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
Suggests: libstdc++%{libstdcxx_sover}-locale
|
||||
Provides: libstdc++%{libstdcxx_sover}-64bit = %{version}-%{release}
|
||||
@ -761,7 +762,7 @@ The standard C++ library, needed for dynamically linked C++ programs.
|
||||
|
||||
%package -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix}-locale
|
||||
Summary: Standard C++ Library Locales
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
Provides: libstdc++%{libstdcxx_sover}-locale = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -771,7 +772,6 @@ Conflicts: %selfconflict libstdc++%{libstdcxx_sover}-locale
|
||||
%description -n libstdc++%{libstdcxx_sover}%{libstdcxx_suffix}-locale
|
||||
The standard C++ library locale data.
|
||||
|
||||
|
||||
%package info
|
||||
Summary: Documentation for the GNU compiler collection
|
||||
License: GFDL-1.2-only
|
||||
@ -785,7 +785,6 @@ BuildArch: noarch
|
||||
GNU info-pages for the GNU compiler collection covering both user-level
|
||||
and internals documentation.
|
||||
|
||||
|
||||
%package objc
|
||||
Summary: GNU Objective C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -798,6 +797,7 @@ Requires: libobjc%{libobjc_sover} >= %{version}-%{release}
|
||||
This package contains the GNU Objective C compiler. Objective C is an
|
||||
object oriented language, created by Next Inc. and used in their
|
||||
Nextstep OS. The source code is available in the gcc package.
|
||||
|
||||
%package objc-32bit
|
||||
Summary: GNU Objective C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -810,6 +810,7 @@ Requires: libobjc%{libobjc_sover}-32bit >= %{version}-%{release}
|
||||
This package contains the GNU Objective C compiler. Objective C is an
|
||||
object oriented language, created by Next Inc. and used in their
|
||||
Nextstep OS. The source code is available in the gcc package.
|
||||
|
||||
%package objc-64bit
|
||||
Summary: GNU Objective C Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -825,7 +826,7 @@ Nextstep OS. The source code is available in the gcc package.
|
||||
|
||||
%package -n libobjc%{libobjc_sover}%{libobjc_suffix}
|
||||
Summary: Library for the GNU Objective C Compiler
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Libraries/Other
|
||||
Provides: libobjc%{libobjc_sover} = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -838,9 +839,10 @@ The library for the GNU Objective C compiler.
|
||||
%post -n libobjc%{libobjc_sover}%{libobjc_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libobjc%{libobjc_sover}%{libobjc_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libobjc%{libobjc_sover}%{libobjc_suffix}-32bit
|
||||
Summary: Library for the GNU Objective C Compiler
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Libraries/Other
|
||||
Provides: libobjc%{libobjc_sover}-32bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -853,9 +855,10 @@ The library for the GNU Objective C compiler.
|
||||
%post -n libobjc%{libobjc_sover}%{libobjc_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libobjc%{libobjc_sover}%{libobjc_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libobjc%{libobjc_sover}%{libobjc_suffix}-64bit
|
||||
Summary: Library for the GNU Objective C Compiler
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Libraries/Other
|
||||
Provides: libobjc%{libobjc_sover}-64bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -881,6 +884,7 @@ Requires: gcc11-objc = %{version}-%{release}
|
||||
This package contains the GNU Objective C++ compiler. Objective C++ is an
|
||||
object oriented language, created by Next Inc. and used in their
|
||||
Nextstep OS. The source code is available in the gcc package.
|
||||
|
||||
%package obj-c++-32bit
|
||||
Summary: GNU Objective C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -893,6 +897,7 @@ Requires: gcc11-objc-32bit = %{version}-%{release}
|
||||
This package contains the GNU Objective C++ compiler. Objective C++ is an
|
||||
object oriented language, created by Next Inc. and used in their
|
||||
Nextstep OS. The source code is available in the gcc package.
|
||||
|
||||
%package obj-c++-64bit
|
||||
Summary: GNU Objective C++ Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -906,7 +911,6 @@ This package contains the GNU Objective C++ compiler. Objective C++ is an
|
||||
object oriented language, created by Next Inc. and used in their
|
||||
Nextstep OS. The source code is available in the gcc package.
|
||||
|
||||
|
||||
%package -n cpp11
|
||||
Summary: The GCC Preprocessor
|
||||
License: GPL-3.0-or-later
|
||||
@ -916,7 +920,6 @@ Group: Development/Languages/C and C++
|
||||
This Package contains just the preprocessor that is used by the X11
|
||||
packages.
|
||||
|
||||
|
||||
%package ada
|
||||
Summary: GNU Ada Compiler Based on GCC (GNAT)
|
||||
License: GPL-3.0-or-later
|
||||
@ -928,6 +931,7 @@ Requires: libada11 = %{version}-%{release}
|
||||
%description ada
|
||||
This package contains an Ada compiler and associated development
|
||||
tools based on the GNU GCC technology.
|
||||
|
||||
%package ada-32bit
|
||||
Summary: GNU Ada Compiler Based on GCC (GNAT)
|
||||
License: GPL-3.0-or-later
|
||||
@ -939,6 +943,7 @@ Requires: libada11-32bit = %{version}-%{release}
|
||||
%description ada-32bit
|
||||
This package contains an Ada compiler and associated development
|
||||
tools based on the GNU GCC technology.
|
||||
|
||||
%package ada-64bit
|
||||
Summary: GNU Ada Compiler Based on GCC (GNAT)
|
||||
License: GPL-3.0-or-later
|
||||
@ -953,7 +958,7 @@ tools based on the GNU GCC technology.
|
||||
|
||||
%package -n libada11
|
||||
Summary: GNU Ada Runtime Libraries
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
Provides: libgnarl-11 = %{version}-%{release}
|
||||
# FIXME: remove %{after} service-format_spec_file is fixed
|
||||
@ -973,9 +978,10 @@ implementation of Distributed Systems Programming (GLADE) and the Posix
|
||||
%post -n libada11 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libada11 -p /sbin/ldconfig
|
||||
|
||||
%package -n libada11-32bit
|
||||
Summary: GNU Ada Runtime Libraries
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
Provides: libgnarl-11-32bit = %{version}-%{release}
|
||||
# FIXME: remove %{after} service-format_spec_file is fixed
|
||||
@ -995,9 +1001,10 @@ implementation of Distributed Systems Programming (GLADE) and the Posix
|
||||
%post -n libada11-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libada11-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libada11-64bit
|
||||
Summary: GNU Ada Runtime Libraries
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: System/Libraries
|
||||
Provides: libgnarl-11-64bit = %{version}-%{release}
|
||||
# FIXME: remove %{after} service-format_spec_file is fixed
|
||||
@ -1031,6 +1038,7 @@ Requires: libquadmath%{libquadmath_sover} >= %{version}-%{release}
|
||||
|
||||
%description fortran
|
||||
This is the Fortran compiler of the GNU Compiler Collection (GCC).
|
||||
|
||||
%package fortran-32bit
|
||||
Summary: The GNU Fortran Compiler and Support Files
|
||||
License: GPL-3.0-or-later
|
||||
@ -1044,6 +1052,7 @@ Requires: libquadmath%{libquadmath_sover}-32bit >= %{version}-%{release}
|
||||
|
||||
%description fortran-32bit
|
||||
This is the Fortran compiler of the GNU Compiler Collection (GCC).
|
||||
|
||||
%package fortran-64bit
|
||||
Summary: The GNU Fortran Compiler and Support Files
|
||||
License: GPL-3.0-or-later
|
||||
@ -1060,7 +1069,7 @@ This is the Fortran compiler of the GNU Compiler Collection (GCC).
|
||||
|
||||
%package -n libgfortran%{libgfortran_sover}%{libgfortran_suffix}
|
||||
Summary: The GNU Fortran Compiler Runtime Library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/Fortran
|
||||
%ifarch %quadmath_arch
|
||||
Requires: libquadmath%{libquadmath_sover} >= %{version}-%{release}
|
||||
@ -1077,9 +1086,10 @@ of the GNU Compiler Collection (GCC).
|
||||
%post -n libgfortran%{libgfortran_sover}%{libgfortran_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgfortran%{libgfortran_sover}%{libgfortran_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libgfortran%{libgfortran_sover}%{libgfortran_suffix}-32bit
|
||||
Summary: The GNU Fortran Compiler Runtime Library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/Fortran
|
||||
%ifarch %quadmath_arch
|
||||
Requires: libquadmath%{libquadmath_sover}-32bit >= %{version}-%{release}
|
||||
@ -1096,9 +1106,10 @@ of the GNU Compiler Collection (GCC).
|
||||
%post -n libgfortran%{libgfortran_sover}%{libgfortran_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgfortran%{libgfortran_sover}%{libgfortran_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libgfortran%{libgfortran_sover}%{libgfortran_suffix}-64bit
|
||||
Summary: The GNU Fortran Compiler Runtime Library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/Fortran
|
||||
%ifarch %quadmath_arch
|
||||
Requires: libquadmath%{libquadmath_sover}-64bit >= %{version}-%{release}
|
||||
@ -1133,6 +1144,7 @@ operations.
|
||||
%post -n libquadmath%{libquadmath_sover}%{libquadmath_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libquadmath%{libquadmath_sover}%{libquadmath_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libquadmath%{libquadmath_sover}%{libquadmath_suffix}-32bit
|
||||
Summary: The GNU Fortran Compiler Quadmath Runtime Library
|
||||
License: LGPL-2.1-only
|
||||
@ -1150,6 +1162,7 @@ operations.
|
||||
%post -n libquadmath%{libquadmath_sover}%{libquadmath_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libquadmath%{libquadmath_sover}%{libquadmath_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libquadmath%{libquadmath_sover}%{libquadmath_suffix}-64bit
|
||||
Summary: The GNU Fortran Compiler Quadmath Runtime Library
|
||||
License: LGPL-2.1-only
|
||||
@ -1184,6 +1197,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libitm%{libitm_sover}%{libitm_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libitm%{libitm_sover}%{libitm_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libitm%{libitm_sover}%{libitm_suffix}-32bit
|
||||
Summary: The GNU Compiler Transactional Memory Runtime Library
|
||||
License: MIT
|
||||
@ -1200,6 +1214,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libitm%{libitm_sover}%{libitm_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libitm%{libitm_sover}%{libitm_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libitm%{libitm_sover}%{libitm_suffix}-64bit
|
||||
Summary: The GNU Compiler Transactional Memory Runtime Library
|
||||
License: MIT
|
||||
@ -1233,6 +1248,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libasan%{libasan_sover}%{libasan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libasan%{libasan_sover}%{libasan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libasan%{libasan_sover}%{libasan_suffix}-32bit
|
||||
Summary: The GNU Compiler Address Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1249,6 +1265,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libasan%{libasan_sover}%{libasan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libasan%{libasan_sover}%{libasan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libasan%{libasan_sover}%{libasan_suffix}-64bit
|
||||
Summary: The GNU Compiler Address Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1282,6 +1299,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libtsan%{libtsan_sover}%{libtsan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libtsan%{libtsan_sover}%{libtsan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libtsan%{libtsan_sover}%{libtsan_suffix}-32bit
|
||||
Summary: The GNU Compiler Thread Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1298,6 +1316,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libtsan%{libtsan_sover}%{libtsan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libtsan%{libtsan_sover}%{libtsan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libtsan%{libtsan_sover}%{libtsan_suffix}-64bit
|
||||
Summary: The GNU Compiler Thread Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1331,6 +1350,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libhwasan%{libhwasan_sover}%{libhwasan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libhwasan%{libhwasan_sover}%{libhwasan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libhwasan%{libhwasan_sover}%{libhwasan_suffix}-32bit
|
||||
Summary: The GNU Compiler Hardware-assisted Address Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1347,6 +1367,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libhwasan%{libhwasan_sover}%{libhwasan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libhwasan%{libhwasan_sover}%{libhwasan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libhwasan%{libhwasan_sover}%{libhwasan_suffix}-64bit
|
||||
Summary: The GNU Compiler Hardware-assisted Address Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1366,7 +1387,7 @@ The runtime library needed to run programs compiled with the
|
||||
|
||||
%package -n libatomic%{libatomic_sover}%{libatomic_suffix}
|
||||
Summary: The GNU Compiler Atomic Operations Runtime Library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/C and C++
|
||||
Provides: libatomic%{libatomic_sover} = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -1379,9 +1400,10 @@ The runtime library for atomic operations of the GNU Compiler Collection (GCC).
|
||||
%post -n libatomic%{libatomic_sover}%{libatomic_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libatomic%{libatomic_sover}%{libatomic_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libatomic%{libatomic_sover}%{libatomic_suffix}-32bit
|
||||
Summary: The GNU Compiler Atomic Operations Runtime Library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/C and C++
|
||||
Provides: libatomic%{libatomic_sover}-32bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -1394,9 +1416,10 @@ The runtime library for atomic operations of the GNU Compiler Collection (GCC).
|
||||
%post -n libatomic%{libatomic_sover}%{libatomic_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libatomic%{libatomic_sover}%{libatomic_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libatomic%{libatomic_sover}%{libatomic_suffix}-64bit
|
||||
Summary: The GNU Compiler Atomic Operations Runtime Library
|
||||
License: GPL-3.0 WITH GCC-exception-3.1
|
||||
License: GPL-3.0-only WITH GCC-exception-3.1
|
||||
Group: Development/Languages/C and C++
|
||||
Provides: libatomic%{libatomic_sover}-64bit = %{version}-%{release}
|
||||
# Only one package may provide this - allows multiple gcc versions
|
||||
@ -1426,6 +1449,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n liblsan%{liblsan_sover}%{liblsan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n liblsan%{liblsan_sover}%{liblsan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n liblsan%{liblsan_sover}%{liblsan_suffix}-32bit
|
||||
Summary: The GNU Compiler Leak Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1442,6 +1466,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n liblsan%{liblsan_sover}%{liblsan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n liblsan%{liblsan_sover}%{liblsan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n liblsan%{liblsan_sover}%{liblsan_suffix}-64bit
|
||||
Summary: The GNU Compiler Leak Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1475,6 +1500,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libubsan%{libubsan_sover}%{libubsan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libubsan%{libubsan_sover}%{libubsan_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libubsan%{libubsan_sover}%{libubsan_suffix}-32bit
|
||||
Summary: The GNU Compiler Undefined Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1491,6 +1517,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libubsan%{libubsan_sover}%{libubsan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libubsan%{libubsan_sover}%{libubsan_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libubsan%{libubsan_sover}%{libubsan_suffix}-64bit
|
||||
Summary: The GNU Compiler Undefined Sanitizer Runtime Library
|
||||
License: MIT
|
||||
@ -1524,6 +1551,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libvtv%{libvtv_sover}%{libvtv_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libvtv%{libvtv_sover}%{libvtv_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libvtv%{libvtv_sover}%{libvtv_suffix}-32bit
|
||||
Summary: The GNU Compiler Vtable Verifier Runtime Library
|
||||
License: MIT
|
||||
@ -1540,6 +1568,7 @@ The runtime library needed to run programs compiled with the
|
||||
%post -n libvtv%{libvtv_sover}%{libvtv_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libvtv%{libvtv_sover}%{libvtv_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libvtv%{libvtv_sover}%{libvtv_suffix}-64bit
|
||||
Summary: The GNU Compiler Vtable Verifier Runtime Library
|
||||
License: MIT
|
||||
@ -1579,6 +1608,7 @@ Requires: libgo%{libgo_sover} >= %{version}-%{release}
|
||||
%description go
|
||||
This package contains a Go compiler and associated development
|
||||
files based on the GNU GCC technology.
|
||||
|
||||
%package go-32bit
|
||||
Summary: GNU Go Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -1590,6 +1620,7 @@ Requires: libgo%{libgo_sover}-32bit >= %{version}-%{release}
|
||||
%description go-32bit
|
||||
This package contains a Go compiler and associated development
|
||||
files based on the GNU GCC technology.
|
||||
|
||||
%package go-64bit
|
||||
Summary: GNU Go Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -1617,6 +1648,7 @@ Runtime library for the GNU Go language.
|
||||
%post -n libgo%{libgo_sover}%{libgo_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgo%{libgo_sover}%{libgo_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libgo%{libgo_sover}%{libgo_suffix}-32bit
|
||||
Summary: GNU Go compiler runtime library
|
||||
License: BSD-3-Clause
|
||||
@ -1632,6 +1664,7 @@ Runtime library for the GNU Go language.
|
||||
%post -n libgo%{libgo_sover}%{libgo_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgo%{libgo_sover}%{libgo_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libgo%{libgo_sover}%{libgo_suffix}-64bit
|
||||
Summary: GNU Go compiler runtime library
|
||||
License: BSD-3-Clause
|
||||
@ -1660,6 +1693,7 @@ Requires: libgphobos%{libgphobos_sover} >= %{version}-%{release}
|
||||
%description d
|
||||
This package contains a D compiler and associated development
|
||||
files based on the GNU GCC technology.
|
||||
|
||||
%package d-32bit
|
||||
Summary: GNU D Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -1672,6 +1706,7 @@ Requires: libgphobos%{libgphobos_sover}-32bit >= %{version}-%{release}
|
||||
%description d-32bit
|
||||
This package contains a D compiler and associated development
|
||||
files based on the GNU GCC technology.
|
||||
|
||||
%package d-64bit
|
||||
Summary: GNU D Compiler
|
||||
License: GPL-3.0-or-later
|
||||
@ -1700,6 +1735,7 @@ Runtime library for the GNU D language.
|
||||
%post -n libgphobos%{libgphobos_sover}%{libgphobos_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgphobos%{libgphobos_sover}%{libgphobos_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libgphobos%{libgphobos_sover}%{libgphobos_suffix}-32bit
|
||||
Summary: GNU D compiler runtime library
|
||||
License: BSL-1.0
|
||||
@ -1715,6 +1751,7 @@ Runtime library for the GNU D language.
|
||||
%post -n libgphobos%{libgphobos_sover}%{libgphobos_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgphobos%{libgphobos_sover}%{libgphobos_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libgphobos%{libgphobos_sover}%{libgphobos_suffix}-64bit
|
||||
Summary: GNU D compiler runtime library
|
||||
License: BSL-1.0
|
||||
@ -1746,6 +1783,7 @@ Runtime library for the GNU D language.
|
||||
%post -n libgdruntime%{libgdruntime_sover}%{libgdruntime_suffix} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgdruntime%{libgdruntime_sover}%{libgdruntime_suffix} -p /sbin/ldconfig
|
||||
|
||||
%package -n libgdruntime%{libgdruntime_sover}%{libgdruntime_suffix}-32bit
|
||||
Summary: GNU D compiler runtime library
|
||||
License: BSL-1.0
|
||||
@ -1761,6 +1799,7 @@ Runtime library for the GNU D language.
|
||||
%post -n libgdruntime%{libgdruntime_sover}%{libgdruntime_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%postun -n libgdruntime%{libgdruntime_sover}%{libgdruntime_suffix}-32bit -p /sbin/ldconfig
|
||||
|
||||
%package -n libgdruntime%{libgdruntime_sover}%{libgdruntime_suffix}-64bit
|
||||
Summary: GNU D compiler runtime library
|
||||
License: BSL-1.0
|
||||
@ -1780,7 +1819,6 @@ Runtime library for the GNU D language.
|
||||
%package -n libgccjit%{libgccjit_sover}%{libgccjit_suffix}
|
||||
Summary: The GNU Compiler Collection JIT library
|
||||
License: GPL-3.0-or-later
|
||||
Group: Development/Languages/C and C++
|
||||
Provides: libgccjit%{libgccjit_sover} = %{version}-%{release}
|
||||
Requires: gcc11
|
||||
|
||||
@ -1802,7 +1840,6 @@ Package contains header files and documentation for GCC JIT front-end.
|
||||
%package -n gcc11-testresults
|
||||
Summary: Testsuite results
|
||||
License: SUSE-Public-Domain
|
||||
Group: Development/Languages/C and C++
|
||||
|
||||
%description -n gcc11-testresults
|
||||
Results from running the gcc and target library testsuites.
|
||||
@ -2189,7 +2226,7 @@ amdgcn-amdhsa,\
|
||||
%endif
|
||||
%if "%{TARGET_ARCH}" == "armv7hl"
|
||||
--with-arch=armv7-a \
|
||||
--with-tune=cortex-a15 \
|
||||
--with-tune=generic-armv7-a \
|
||||
--with-float=hard \
|
||||
--with-abi=aapcs-linux \
|
||||
--with-fpu=vfpv3-d16 \
|
||||
@ -2549,7 +2586,7 @@ for l in `find %{buildroot} -name '*.la'`; do
|
||||
mv $l.new $l
|
||||
done
|
||||
|
||||
%if 0%{?run_tests:1}
|
||||
%if 0%{?run_tests:1}
|
||||
cp `find . -name "*.sum"` ../testresults/
|
||||
cp `find . -name "*.log" \! -name "config.log" | grep -v 'acats.\?/tests' | grep -v libbacktrace` ../testresults/
|
||||
chmod 644 ../testresults/*
|
||||
@ -2602,7 +2639,7 @@ mv %{buildroot}/%{_infodir}/libgomp.info %{buildroot}/%{_infodir}/libgomp%{binsu
|
||||
%ifarch %itm_arch
|
||||
mv %{buildroot}/%{_infodir}/libitm.info %{buildroot}/%{_infodir}/libitm%{binsuffix}.info
|
||||
%endif
|
||||
%if %{build_fortran}
|
||||
%if %{build_fortran}
|
||||
%ifarch %quadmath_arch
|
||||
mv %{buildroot}/%{_infodir}/libquadmath.info %{buildroot}/%{_infodir}/libquadmath%{binsuffix}.info
|
||||
%endif
|
||||
@ -2629,7 +2666,7 @@ cat cpplib%{binsuffix}.lang gcc%{binsuffix}.lang > gcc11-locale.lang
|
||||
%ifarch %itm_arch
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/libitm%{binsuffix}.info.gz
|
||||
%endif
|
||||
%if %{build_fortran}
|
||||
%if %{build_fortran}
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/gfortran%{binsuffix}.info.gz
|
||||
%ifarch %quadmath_arch
|
||||
%install_info --info-dir=%{_infodir} %{_infodir}/libquadmath%{binsuffix}.info.gz
|
||||
|
Loading…
x
Reference in New Issue
Block a user