mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Add GMP as a prerequisite for GDB
This commit is contained in:
parent
ea77e182d4
commit
4301130dec
18
bare/config/devel/gmp-6.1.0.cfg
Normal file
18
bare/config/devel/gmp-6.1.0.cfg
Normal 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
|
@ -11,6 +11,7 @@
|
||||
#
|
||||
|
||||
devel/expat-2.1.0-1
|
||||
devel/gmp-6.1.0
|
||||
tools/rtems-gdb-head
|
||||
|
||||
tools/rtems-binutils-head
|
||||
|
@ -6,6 +6,7 @@
|
||||
#
|
||||
|
||||
devel/expat-2.1.0-1
|
||||
devel/gmp-6.1.0
|
||||
tools/rtems-gdb-head
|
||||
|
||||
tools/rtems-binutils-head
|
||||
|
61
source-builder/config/gmp.cfg
Normal file
61
source-builder/config/gmp.cfg
Normal 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}
|
Loading…
x
Reference in New Issue
Block a user