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:
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}
|
Reference in New Issue
Block a user