forked from Imagelibrary/rtems
39 lines
901 B
Plaintext
39 lines
901 B
Plaintext
%build
|
|
%if "%{_prefix}" != "/usr"
|
|
export PATH="%{_bindir}:${PATH}"
|
|
%endif
|
|
mkdir -p build
|
|
cd build
|
|
%if "%{_build}" != "%{_host}"
|
|
CFLAGS_FOR_BUILD="-g -O2 -Wall" \
|
|
%endif
|
|
CFLAGS="$RPM_OPT_FLAGS" \
|
|
../gdb-%{gdb_version}/configure \
|
|
--build=%_build --host=%_host \
|
|
--target=@tool_target@ \
|
|
--verbose --disable-nls \
|
|
--without-included-gettext \
|
|
--disable-win32-registry \
|
|
--disable-werror \
|
|
%{build_sim} \
|
|
%if "%{gdb_version}" >= "6.7"
|
|
--with-system-readline \
|
|
%endif
|
|
%if "%{gdb_version}" >= "6.6"
|
|
--with-expat \
|
|
%endif
|
|
%if "%{gdb_version}" >= "6.8.50"
|
|
--without-python \
|
|
%endif
|
|
--with-sysroot=%{_prefix}/@tool_target@/sys-root \
|
|
--prefix=%{_prefix} --bindir=%{_bindir} \
|
|
--includedir=%{_includedir} --libdir=%{_libdir} \
|
|
--mandir=%{_mandir} --infodir=%{_infodir}
|
|
|
|
make %{?_smp_mflags} all
|
|
%if %build_infos
|
|
make info
|
|
%endif
|
|
cd ..
|
|
|