Accepting request 853584 from devel:gcc
- Use defined gcc version for all architectures - Update to v3.3.0 * Fixes assembly of trap.S when building ARM multilibs (related to [bsc#1106014] - Remove unused configure flag --with-multilib-list. Newlib's configure script obtains this information from the GCC used to build it. - Use defined gcc version for all architectures - Update to v3.3.0 * Fixes assembly of trap.S when building ARM multilibs (related to [bsc#1106014] - Remove unused configure flag --with-multilib-list. Newlib's configure script obtains this information from the GCC used to build it. - Use defined gcc version for all architectures - Update to v3.3.0 * Fixes assembly of trap.S when building ARM multilibs (related to [bsc#1106014] - Remove unused configure flag --with-multilib-list. Newlib's configure script obtains this information from the GCC used to build it. - Use defined gcc version for all architectures - Update to v3.3.0 * Fixes assembly of trap.S when building ARM multilibs (related to [bsc#1106014] - Remove unused configure flag --with-multilib-list. Newlib's configure OBS-URL: https://build.opensuse.org/request/show/853584 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/newlib?expand=0&rev=8
This commit is contained in:
commit
907faa4bfa
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 7 09:17:44 UTC 2020 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Use defined gcc version for all architectures
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 27 03:49:05 UTC 2020 - Matthew Trescott <matthewtrescott@gmail.com>
|
||||||
|
|
||||||
|
- Update to v3.3.0
|
||||||
|
* Fixes assembly of trap.S when building ARM multilibs (related
|
||||||
|
to [bsc#1106014]
|
||||||
|
- Remove unused configure flag --with-multilib-list. Newlib's configure
|
||||||
|
script obtains this information from the GCC used to build it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-arm-none-newlib-devel
|
# spec file for package cross-arm-none-newlib-devel
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -24,21 +24,17 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: cross-%{cross_arch}-newlib-devel
|
Name: cross-%{cross_arch}-newlib-devel
|
||||||
Version: 3.1.0
|
Version: 3.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library intended for use on %{cross_arch} embedded systems
|
Summary: C library intended for use on %{cross_arch} embedded systems
|
||||||
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
Url: https://sourceware.org/newlib/
|
URL: https://sourceware.org/newlib/
|
||||||
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
||||||
|
|
||||||
Patch1: epiphany-fixes.diff
|
Patch1: epiphany-fixes.diff
|
||||||
|
|
||||||
%if "%{cross_arch}" == "riscv64"
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc8-bootstrap
|
|
||||||
%else
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
||||||
%endif
|
|
||||||
%if %{suse_version} > 1220
|
%if %{suse_version} > 1220
|
||||||
BuildRequires: makeinfo
|
BuildRequires: makeinfo
|
||||||
%else
|
%else
|
||||||
@ -72,9 +68,6 @@ cd build-dir
|
|||||||
../configure \
|
../configure \
|
||||||
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
||||||
--target=%{target} \
|
--target=%{target} \
|
||||||
%if "%{cross_arch}" == "arm-none"
|
|
||||||
--with-multilib-list=armv6-m,armv7-m,armv7e-m,cortex-m7,armv7-r \
|
|
||||||
%endif
|
|
||||||
--with-build-sysroot=%{sysroot}
|
--with-build-sysroot=%{sysroot}
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 7 09:17:44 UTC 2020 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Use defined gcc version for all architectures
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 27 03:49:05 UTC 2020 - Matthew Trescott <matthewtrescott@gmail.com>
|
||||||
|
|
||||||
|
- Update to v3.3.0
|
||||||
|
* Fixes assembly of trap.S when building ARM multilibs (related
|
||||||
|
to [bsc#1106014]
|
||||||
|
- Remove unused configure flag --with-multilib-list. Newlib's configure
|
||||||
|
script obtains this information from the GCC used to build it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-epiphany-newlib-devel
|
# spec file for package cross-epiphany-newlib-devel
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -24,21 +24,17 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: cross-%{cross_arch}-newlib-devel
|
Name: cross-%{cross_arch}-newlib-devel
|
||||||
Version: 3.1.0
|
Version: 3.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library intended for use on %{cross_arch} embedded systems
|
Summary: C library intended for use on %{cross_arch} embedded systems
|
||||||
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
Url: https://sourceware.org/newlib/
|
URL: https://sourceware.org/newlib/
|
||||||
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
||||||
|
|
||||||
Patch1: epiphany-fixes.diff
|
Patch1: epiphany-fixes.diff
|
||||||
|
|
||||||
%if "%{cross_arch}" == "riscv64"
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc8-bootstrap
|
|
||||||
%else
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
||||||
%endif
|
|
||||||
%if %{suse_version} > 1220
|
%if %{suse_version} > 1220
|
||||||
BuildRequires: makeinfo
|
BuildRequires: makeinfo
|
||||||
%else
|
%else
|
||||||
@ -72,9 +68,6 @@ cd build-dir
|
|||||||
../configure \
|
../configure \
|
||||||
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
||||||
--target=%{target} \
|
--target=%{target} \
|
||||||
%if "%{cross_arch}" == "arm-none"
|
|
||||||
--with-multilib-list=armv6-m,armv7-m,armv7e-m,cortex-m7,armv7-r \
|
|
||||||
%endif
|
|
||||||
--with-build-sysroot=%{sysroot}
|
--with-build-sysroot=%{sysroot}
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 7 09:17:44 UTC 2020 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Use defined gcc version for all architectures
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 27 03:49:05 UTC 2020 - Matthew Trescott <matthewtrescott@gmail.com>
|
||||||
|
|
||||||
|
- Update to v3.3.0
|
||||||
|
* Fixes assembly of trap.S when building ARM multilibs (related
|
||||||
|
to [bsc#1106014]
|
||||||
|
- Remove unused configure flag --with-multilib-list. Newlib's configure
|
||||||
|
script obtains this information from the GCC used to build it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-riscv64-newlib-devel
|
# spec file for package cross-riscv64-newlib-devel
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -24,21 +24,17 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: cross-%{cross_arch}-newlib-devel
|
Name: cross-%{cross_arch}-newlib-devel
|
||||||
Version: 3.1.0
|
Version: 3.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library intended for use on %{cross_arch} embedded systems
|
Summary: C library intended for use on %{cross_arch} embedded systems
|
||||||
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
Url: https://sourceware.org/newlib/
|
URL: https://sourceware.org/newlib/
|
||||||
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
||||||
|
|
||||||
Patch1: epiphany-fixes.diff
|
Patch1: epiphany-fixes.diff
|
||||||
|
|
||||||
%if "%{cross_arch}" == "riscv64"
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc8-bootstrap
|
|
||||||
%else
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
||||||
%endif
|
|
||||||
%if %{suse_version} > 1220
|
%if %{suse_version} > 1220
|
||||||
BuildRequires: makeinfo
|
BuildRequires: makeinfo
|
||||||
%else
|
%else
|
||||||
@ -72,9 +68,6 @@ cd build-dir
|
|||||||
../configure \
|
../configure \
|
||||||
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
||||||
--target=%{target} \
|
--target=%{target} \
|
||||||
%if "%{cross_arch}" == "arm-none"
|
|
||||||
--with-multilib-list=armv6-m,armv7-m,armv7e-m,cortex-m7,armv7-r \
|
|
||||||
%endif
|
|
||||||
--with-build-sysroot=%{sysroot}
|
--with-build-sysroot=%{sysroot}
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 7 09:17:44 UTC 2020 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Use defined gcc version for all architectures
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 27 03:49:05 UTC 2020 - Matthew Trescott <matthewtrescott@gmail.com>
|
||||||
|
|
||||||
|
- Update to v3.3.0
|
||||||
|
* Fixes assembly of trap.S when building ARM multilibs (related
|
||||||
|
to [bsc#1106014]
|
||||||
|
- Remove unused configure flag --with-multilib-list. Newlib's configure
|
||||||
|
script obtains this information from the GCC used to build it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package cross-rx-newlib-devel
|
# spec file for package cross-rx-newlib-devel
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -24,21 +24,17 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: cross-%{cross_arch}-newlib-devel
|
Name: cross-%{cross_arch}-newlib-devel
|
||||||
Version: 3.1.0
|
Version: 3.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library intended for use on %{cross_arch} embedded systems
|
Summary: C library intended for use on %{cross_arch} embedded systems
|
||||||
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
Url: https://sourceware.org/newlib/
|
URL: https://sourceware.org/newlib/
|
||||||
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
||||||
|
|
||||||
Patch1: epiphany-fixes.diff
|
Patch1: epiphany-fixes.diff
|
||||||
|
|
||||||
%if "%{cross_arch}" == "riscv64"
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc8-bootstrap
|
|
||||||
%else
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
||||||
%endif
|
|
||||||
%if %{suse_version} > 1220
|
%if %{suse_version} > 1220
|
||||||
BuildRequires: makeinfo
|
BuildRequires: makeinfo
|
||||||
%else
|
%else
|
||||||
@ -72,9 +68,6 @@ cd build-dir
|
|||||||
../configure \
|
../configure \
|
||||||
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
||||||
--target=%{target} \
|
--target=%{target} \
|
||||||
%if "%{cross_arch}" == "arm-none"
|
|
||||||
--with-multilib-list=armv6-m,armv7-m,armv7e-m,cortex-m7,armv7-r \
|
|
||||||
%endif
|
|
||||||
--with-build-sysroot=%{sysroot}
|
--with-build-sysroot=%{sysroot}
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fb4fa1cc21e9060719208300a61420e4089d6de6ef59cf533b57fe74801d102a
|
|
||||||
size 17958952
|
|
3
newlib-3.3.0.tar.gz
Normal file
3
newlib-3.3.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:58dd9e3eaedf519360d92d84205c3deef0b3fc286685d1c562e245914ef72c66
|
||||||
|
size 18361083
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 7 09:17:44 UTC 2020 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Use defined gcc version for all architectures
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 27 03:49:05 UTC 2020 - Matthew Trescott <matthewtrescott@gmail.com>
|
||||||
|
|
||||||
|
- Update to v3.3.0
|
||||||
|
* Fixes assembly of trap.S when building ARM multilibs (related
|
||||||
|
to [bsc#1106014]
|
||||||
|
- Remove unused configure flag --with-multilib-list. Newlib's configure
|
||||||
|
script obtains this information from the GCC used to build it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
Sun Jun 23 01:00:01 UTC 2019 - Andreas Färber <afaerber@suse.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package newlib
|
# spec file for package newlib
|
||||||
#
|
#
|
||||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,12 +17,12 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: newlib
|
Name: newlib
|
||||||
Version: 3.1.0
|
Version: 3.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library intended for use on embedded systems
|
Summary: C library intended for use on embedded systems
|
||||||
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
License: BSD-3-Clause AND MIT AND LGPL-2.0-or-later AND ISC
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
Url: https://sourceware.org/newlib/
|
URL: https://sourceware.org/newlib/
|
||||||
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
||||||
|
|
||||||
Patch1: epiphany-fixes.diff
|
Patch1: epiphany-fixes.diff
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: cross-%{cross_arch}-newlib-devel
|
Name: cross-%{cross_arch}-newlib-devel
|
||||||
Version: 3.1.0
|
Version: 3.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library intended for use on %{cross_arch} embedded systems
|
Summary: C library intended for use on %{cross_arch} embedded systems
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
@ -15,11 +15,7 @@ Source0: ftp://sourceware.org/pub/newlib/newlib-%{version}.tar.gz
|
|||||||
|
|
||||||
Patch1: epiphany-fixes.diff
|
Patch1: epiphany-fixes.diff
|
||||||
|
|
||||||
%if "%{cross_arch}" == "riscv64"
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc8-bootstrap
|
|
||||||
%else
|
|
||||||
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
BuildRequires: cross-%{gcc_cross_arch}-gcc%{gcc_version}-bootstrap
|
||||||
%endif
|
|
||||||
%if %{suse_version} > 1220
|
%if %{suse_version} > 1220
|
||||||
BuildRequires: makeinfo
|
BuildRequires: makeinfo
|
||||||
%else
|
%else
|
||||||
@ -53,9 +49,6 @@ cd build-dir
|
|||||||
../configure \
|
../configure \
|
||||||
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
--prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} --infodir=%{_infodir} \
|
||||||
--target=%{target} \
|
--target=%{target} \
|
||||||
%if "%{cross_arch}" == "arm-none"
|
|
||||||
--with-multilib-list=armv6-m,armv7-m,armv7e-m,cortex-m7,armv7-r \
|
|
||||||
%endif
|
|
||||||
--with-build-sysroot=%{sysroot}
|
--with-build-sysroot=%{sysroot}
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user