Add GMP as a prerequisite for GDB

This commit is contained in:
Sebastian Huber 2020-12-11 07:46:46 +01:00
parent ea77e182d4
commit 4301130dec
4 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#
# GMP 6.1.0
#
%if %{release} == %{nil}
%define release 1
%endif
%include %{_configdir}/base.cfg
%define gmp_version 6.1.0
%hash sha512 gmp-%{gmp_version}.tar.bz2 3c82aeab9c1596d4da8afac2eec38e429e84f3211e1a572cf8fd2b546493c44c039b922a1133eaaa48bd7f3e11dbe795a384e21ed95cbe3ecc58d7ac02246117
#
# The GMP build instructions.
#
%include %{_configdir}/gmp.cfg

View File

@ -11,6 +11,7 @@
#
devel/expat-2.1.0-1
devel/gmp-6.1.0
tools/rtems-gdb-head
tools/rtems-binutils-head

View File

@ -6,6 +6,7 @@
#
devel/expat-2.1.0-1
devel/gmp-6.1.0
tools/rtems-gdb-head
tools/rtems-binutils-head

View File

@ -0,0 +1,61 @@
#
# The GNU Multiple Precision Arithmetic Library (GMP)
#
# This configuration file configure's, make's and install's GMP.
#
%if %{release} == %{nil}
%define release 1
%endif
Name: gmp-%{gmp_version}-%{_host}-%{release}
Summary: The GNU Multiple Precision Arithmetic Library (GMP) v%{gmp_version} for target %{_target} on host %{_host}
Version: %{gmp_version}
Release: %{release}
URL: https://gmplib.org/
#
# Source
#
%source set gmp https://gcc.gnu.org/pub/gcc/infrastructure/gmp-%{gmp_version}.tar.bz2
#
# Prepare the source code.
#
%prep
build_top=$(pwd)
%source setup gmp -q -n gmp-%{gmp_version}
%patch setup gmp -p1
cd ${build_top}
%build
build_top=$(pwd)
cd gmp-%{gmp_version}
%{host_build_flags}
./configure \
--build=%{_build} --host=%{_host} \
--verbose \
--prefix=%{_prefix} --bindir=%{_bindir} \
--exec-prefix=%{_exec_prefix} \
--includedir=%{_includedir} --libdir=%{_libdir} \
--mandir=%{_mandir} --infodir=%{_infodir} \
--disable-shared
%{__make} %{?_smp_mflags} all
cd ${build_top}
%install
build_top=$(pwd)
rm -rf $SB_BUILD_ROOT
cd gmp-%{gmp_version}
%{__make} DESTDIR=$SB_BUILD_ROOT install
cd ${build_top}