%define binutils_target %{_target_platform} %define isnative 1 %define enable_shared 1 %define run_testsuite 0 %define accelerator_crossbuild 0 %define disable_nls 1 %ifarch x86_64 %define x64 x64 %endif Summary: A GNU collection of binary utilities Name: cross-armv7nhl-binutils-accel-%{!?x64:x86}%{?x64} Version: 2.22 Release: 1.21.Mer License: GPLv3+ Group: Development/Tools URL: http://sources.redhat.com/binutils Source: ftp://ftp.kernel.org/pub/linux/devel/binutils/binutils-%{version}.tar.bz2 Source2: binutils-2.19.50.0.1-output-format.sed Source100: baselibs.conf Source200: precheckin.sh Source201: README.PACKAGER Patch01: binutils-2.20.51.0.2-libtool-lib64.patch Patch04: binutils-2.20.51.0.2-version.patch Patch05: binutils-2.20.51.0.2-set-long-long.patch Patch06: binutils-2.20.51.0.10-copy-osabi.patch Patch07: binutils-2.20.51.0.10-sec-merge-emit.patch Patch08: binutils-2.20.51.0.2-build-id.patch Patch09: binutils-2.22-branch-updates.patch Patch10: binutils-2.22-156-pr10144.patch Patch11: fixbug13534_1.patch Patch12: fixbug13534_2.patch Patch13: fixbug13534_3.patch Patch14: fixbug13534_4.patch Patch15: fixbug13534_5.patch Patch16: pr_13990_14189.patch Patch17: pr_13177.patch %if "%{name}" != "binutils" %if "%{name}" != "cross-mipsel-binutils" %define binutils_target %(echo %{name} | sed -e "s/cross-\\(.*\\)-binutils/\\1/")-tizen-linux-gnueabi %else %define binutils_target %(echo %{name} | sed -e "s/cross-\\(.*\\)-binutils/\\1/")-tizen-linux-gnu %endif %define _prefix /opt/cross %define enable_shared 0 %define isnative 0 %define run_testsuite 0 %define cross %{binutils_target}- # single target atm. ExclusiveArch: %ix86 x86_64 # special handling for Tizen ARM build acceleration %if "%(echo %{name} | sed -e "s/cross-.*-binutils-\\(.*\\)-.*/\\1/")" == "accel" %define binutils_target %(echo %{name} | sed -e "s/cross-\\(.*\\)-binutils-accel-.*/\\1/")-tizen-linux-gnueabi %define _prefix /usr %define cross "" %define accelerator_crossbuild 1 AutoReqProv: 0 %define _build_name_fmt %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.dontuse.rpm %endif %endif BuildRequires: texinfo >= 4.0, gettext, flex, bison, zlib-devel # Required for: ld-bootstrap/bootstrap.exp bootstrap with --static # It should not be required for: ld-elf/elf.exp static {preinit,init,fini} array %if %{run_testsuite} BuildRequires: dejagnu, zlib-static, glibc-static, sharutils %endif BuildRequires: elfutils-libelf-devel Conflicts: gcc-c++ < 4.0.0 Requires(post): /sbin/install-info Requires(preun): /sbin/install-info # On ARM EABI systems, we do want -gnueabi to be part of the # target triple. %ifnarch %{arm} %define _gnu %{nil} %endif %description Binutils is a collection of binary utilities, including ar (for creating, modifying and extracting from archives), as (a family of GNU assemblers), gprof (for displaying call graph profile data), ld (the GNU linker), nm (for listing symbols from object files), objcopy (for copying and translating object files), objdump (for displaying information from object files), ranlib (for generating an index for the contents of an archive), readelf (for displaying detailed information about binary files), size (for listing the section sizes of an object or archive file), strings (for listing printable strings from files), strip (for discarding symbols), and addr2line (for converting addresses to file and line). %package devel Summary: BFD and opcodes static libraries and header files Group: System/Libraries Conflicts: binutils < 2.17.50.0.3-4 Requires(post): /sbin/install-info Requires(preun): /sbin/install-info Requires: zlib-devel %description devel This package contains BFD and opcodes static libraries and associated header files. Only *.a libraries are included, because BFD doesn't have a stable ABI. Developers starting new projects are strongly encouraged to consider using libelf instead of BFD. %prep %setup -q -n binutils-%{version} %patch01 -p0 -b .libtool-lib64~ # Causes build churn --cvm #%patch04 -p0 -b .version~ %patch05 -p0 -b .set-long-long~ %patch06 -p0 -b .copy-osabi~ %patch07 -p0 -b .sec-merge-emit~ %patch08 -p0 -b .build-id~ %patch09 -p1 -b .branchupdates %patch10 -p1 -b .pr10144 %patch11 -p1 -b .fixbug13534_1 %patch12 -p1 -b .fixbug13534_2 %patch13 -p1 -b .fixbug13534_3 %patch14 -p1 -b .fixbug13534_4 %patch15 -p1 -b .fixbug13534_5 %patch16 -p1 %patch17 -p1 # We cannot run autotools as there is an exact requirement of autoconf-2.59. # On ppc64 we might use 64KiB pages sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*ppc.c # LTP sucks perl -pi -e 's/i\[3-7\]86/i[34567]86/g' */conf* sed -i -e 's/%''{release}/%{release}/g' bfd/Makefile{.am,.in} sed -i -e '/^libopcodes_la_\(DEPENDENCIES\|LIBADD\)/s,$, ../bfd/libbfd.la,' opcodes/Makefile.{am,in} # Build libbfd.so and libopcodes.so with -Bsymbolic-functions if possible. if gcc %{optflags} -v --help 2>&1 | grep -q -- -Bsymbolic-functions; then sed -i -e 's/^libbfd_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' bfd/Makefile.{am,in} sed -i -e 's/^libopcodes_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' opcodes/Makefile.{am,in} fi # $PACKAGE is used for the gettext catalog name. sed -i -e 's/^ PACKAGE=/ PACKAGE=%{?cross}/' */configure # Undo the name change to run the testsuite. for tool in binutils gas ld do sed -i -e "2aDEJATOOL = $tool" $tool/Makefile.am sed -i -e "s/^DEJATOOL = .*/DEJATOOL = $tool/" $tool/Makefile.in done touch */configure %build echo target is %{binutils_target} export CFLAGS="$RPM_OPT_FLAGS" CARGS= case %{binutils_target} in i?86*) CARGS="$CARGS --enable-64-bit-bfd" ;; esac %if 0%{?_with_debug:1} CFLAGS="$CFLAGS -O0 -ggdb2" %define enable_shared 0 %endif # We could optimize the cross builds size by --enable-shared but the produced # binaries may be less convenient in the embedded environment. %if %{accelerator_crossbuild} export CFLAGS="$CFLAGS -Wl,-rpath,/emul/ia32-linux/usr/%{_lib}:/emul/ia32-linux/%{_lib}:/usr/%{_lib}:/%{_lib}:/usr/lib:/lib" %endif %configure \ --build=%{_target_platform} --host=%{_target_platform} \ --target=%{binutils_target} \ %if !%{isnative} %if !%{accelerator_crossbuild} --enable-targets=%{_host} \ --with-sysroot=%{_prefix}/%{binutils_target}/sys-root \ --program-prefix=%{cross} \ %else --with-sysroot=/ \ --program-prefix="" \ %endif %endif %if %{enable_shared} --enable-shared \ %else --disable-shared \ %endif $CARGS \ --disable-werror \ --enable-lto \ --enable-gold=yes \ --enable-plugins \ %if %{disable_nls} --disable-nls \ %endif --with-bugurl=http://bugzilla.tizen.com make %{_smp_mflags} tooldir=%{_prefix} all make %{_smp_mflags} tooldir=%{_prefix} info # Do not use %%check as it is run after %%install where libbfd.so is rebuild # with -fvisibility=hidden no longer being usable in its shared form. %if !%{run_testsuite} echo ====================TESTSUITE DISABLED========================= %else make -k check < /dev/null || : echo ====================TESTING========================= cat {gas/testsuite/gas,ld/ld,binutils/binutils}.sum echo ====================TESTING END===================== for file in {gas/testsuite/gas,ld/ld,binutils/binutils}.{sum,log} do ln $file binutils-%{_target_platform}-$(basename $file) || : done tar cjf binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}-*.{sum,log} uuencode binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}.tar.bz2 rm -f binutils-%{_target_platform}.tar.bz2 binutils-%{_target_platform}-*.{sum,log} %endif %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} %if %{isnative} make prefix=%{buildroot}%{_prefix} infodir=%{buildroot}%{_infodir} install-info # Rebuild libiberty.a with -fPIC. # Future: Remove it together with its header file, projects should bundle it. make -C libiberty clean make CFLAGS="-g -fPIC $RPM_OPT_FLAGS" -C libiberty # Rebuild libbfd.a with -fPIC. # Without the hidden visibility the 3rd party shared libraries would export # the bfd non-stable ABI. make -C bfd clean make CFLAGS="-g -fPIC $RPM_OPT_FLAGS -fvisibility=hidden" -C bfd install -m 644 bfd/libbfd.a %{buildroot}%{_prefix}/%{_lib} install -m 644 libiberty/libiberty.a %{buildroot}%{_prefix}/%{_lib} install -m 644 include/libiberty.h %{buildroot}%{_prefix}/include # Remove Windows/Novell only man pages rm -f %{buildroot}%{_mandir}/man1/{dlltool,nlmconv,windres}* %if %{enable_shared} chmod +x %{buildroot}%{_prefix}/%{_lib}/lib*.so* %endif # Prevent programs to link against libbfd and libopcodes dynamically, # they are changing far too often rm -f %{buildroot}%{_prefix}/%{_lib}/lib{bfd,opcodes}.so # Remove libtool files, which reference the .so libs rm -f %{buildroot}%{_prefix}/%{_lib}/lib{bfd,opcodes}.la %if "%{__isa_bits}" == "64" # Sanity check --enable-64-bit-bfd really works. grep '^#define BFD_ARCH_SIZE 64$' %{buildroot}%{_prefix}/include/bfd.h %endif # Fix multilib conflicts of generated values by __WORDSIZE-based expressions. %ifarch %{ix86} x86_64 sed -i -e '/^#include "ansidecl.h"/{p;s~^.*$~#include ~;}' \ -e 's/^#define BFD_DEFAULT_TARGET_SIZE \(32\|64\) *$/#define BFD_DEFAULT_TARGET_SIZE __WORDSIZE/' \ -e 's/^#define BFD_HOST_64BIT_LONG [01] *$/#define BFD_HOST_64BIT_LONG (__WORDSIZE == 64)/' \ -e 's/^#define BFD_HOST_64_BIT \(long \)\?long *$/#if __WORDSIZE == 32\ #define BFD_HOST_64_BIT long long\ #else\ #define BFD_HOST_64_BIT long\ #endif/' \ -e 's/^#define BFD_HOST_U_64_BIT unsigned \(long \)\?long *$/#define BFD_HOST_U_64_BIT unsigned BFD_HOST_64_BIT/' \ %{buildroot}%{_prefix}/include/bfd.h %endif touch -r bfd/bfd-in2.h %{buildroot}%{_prefix}/include/bfd.h # Generate .so linker scripts for dependencies; imported from glibc/Makerules: # This fragment of linker script gives the OUTPUT_FORMAT statement # for the configuration we are building. OUTPUT_FORMAT="\ /* Ensure this .so library will not be used by a link for a different format on a multi-architecture system. */ $(gcc $CFLAGS $LDFLAGS -shared -x c /dev/null -o /dev/null -Wl,--verbose -v 2>&1 | sed -n -f "%{SOURCE2}")" tee %{buildroot}%{_prefix}/%{_lib}/libbfd.so <> %{?cross}binutils.lang cat %{?cross}bfd.lang >> %{?cross}binutils.lang cat %{?cross}gas.lang >> %{?cross}binutils.lang cat %{?cross}ld.lang >> %{?cross}binutils.lang cat %{?cross}gprof.lang >> %{?cross}binutils.lang %endif %if %{accelerator_crossbuild} # Fixed x86 dependencies sed "s/@X86@/%{!?x64:x86}%{?x64}/g" -i %{_sourcedir}/baselibs.conf %endif %clean rm -rf %{buildroot} %if %{isnative} %post /sbin/ldconfig %install_info --info-dir=%{_infodir} %{_infodir}/as.info %install_info --info-dir=%{_infodir} %{_infodir}/binutils.info %install_info --info-dir=%{_infodir} %{_infodir}/gprof.info %install_info --info-dir=%{_infodir} %{_infodir}/ld.info %install_info --info-dir=%{_infodir} %{_infodir}/standards.info %install_info --info-dir=%{_infodir} %{_infodir}/configure.info exit 0 %preun if [ $1 = 0 ] ;then %install_info --delete --info-dir=%{_infodir} %{_infodir}/as.info %install_info --delete --info-dir=%{_infodir} %{_infodir}/binutils.info %install_info --delete --info-dir=%{_infodir} %{_infodir}/gprof.info %install_info --delete --info-dir=%{_infodir} %{_infodir}/ld.info %install_info --delete --info-dir=%{_infodir} %{_infodir}/standards.info %install_info --delete --info-dir=%{_infodir} %{_infodir}/configure.info fi exit 0 %postun -p /sbin/ldconfig %post devel %install_info --info-dir=%{_infodir} %{_infodir}/bfd.info %preun devel if [ $1 = 0 ] ;then %install_info --delete --info-dir=%{_infodir} %{_infodir}/bfd.info fi %endif # %{isnative} %if %{disable_nls} %files %else %files -f %{?cross}binutils.lang %endif %defattr(-,root,root,-) %doc README %{_prefix}/bin/* %{_mandir}/man1/* %if %{enable_shared} %{_prefix}/%{_lib}/lib*.so %exclude %{_prefix}/%{_lib}/libbfd.so %exclude %{_prefix}/%{_lib}/libopcodes.so %endif %if %{isnative} %{_infodir}/[^b]*info* %{_infodir}/binutils*info* %files devel %defattr(-,root,root,-) %{_prefix}/include/* %{_prefix}/%{_lib}/libbfd.so %{_prefix}/%{_lib}/libopcodes.so %{_prefix}/%{_lib}/lib*.a %{_infodir}/bfd*info* %endif # %{isnative} %changelog * Tue Feb 7 2012 Carsten Munk - 2.22 - Pull some patches relevant to MIPS from branch update, and fix for PR10144 * Mon Dec 12 2011 Ray Donnelly - 2.22 - Updated to binutils 2.22 * Tue Jun 28 2011 Junfeng Dong - 2.21.51.0.8 - Add patch binutils-2.21.51.0.8-pr12778.patch to fix dbus failure on arm. * Tue May 3 2011 Junfeng Dong - 2.21.51.0.8 - Update to latest version 2.21.51.0.8. - Clean unused patch files. - Drop binutils.spec.diff. * Sun Apr 24 2011 Jan-Simon Möller - 1.0 - Add baselibs.conf to src.rpm * Thu Mar 10 2011 Junfeng Dong -2.21 - Update to 2.21. The changes include: - Drop the following patch which have been merged into 2.21 already. binutils-2.20.51.0.2-ifunc-ld-s.patch, binutils-2.20.51.0.2-lwp.patch binutils-2.20.51.0.2-tag-div-use.patch - Drop binutils-2.20.51.0.2-build-id.patch because of the code evolvement. - Recreate binutils-2.20.51.0.2-libtool-lib64.patch for 2.21 and rename the new patch as binutils-2.21-libtool-lib64.patch. * Fri Jan 7 2011 Carsten Munk - 2.20.51.0.2 - Add armv7hl, armv7nhl cross-binutils- packages. Part of fix for BMC#11463 * Fri Dec 31 2010 Carsten Munk - 2.20.51.0.2 - Add support for Tag_MPextension_use and Tag_DIV_use. Fixes BMC#11431 * Wed Dec 29 2010 Austin Zhang - 2.20.51.0.2 - Bugfixing: BMC#10336 - Error when installing binutils with --excludedocs in .ks * Tue May 25 2010 Austin Zhang - 2.20.51.0.2 - enable LTO (link time optimization) * Mon May 3 2010 Jan-Simon Möller - 2.20.51.0.2 - Add precheckin.sh, README.packager - add cross-binutils-* packages (cross-compiler) * Thu Mar 4 2010 Anas Nashif - 2.20.51.0.2 - Use %%{_target_platform} as the build target * Sat Dec 12 2009 Arjan van de Ven - 2.20.51.0.2 - add the LD_AS_NEEDED env variable back, and get us closer to upstream * Fri Nov 27 2009 Austin Zhang - 2.20.51.0.2 - Update to 2.20.51.0.2 * Sat Aug 22 2009 Anas Nashif - 2.19.51.0.14 - Update to 2.19.51.0.14 * Wed May 6 2009 Arjan van de Ven 2.19 - Add LD_AS_NEEDED environment variable * Tue Jan 13 2009 Anas Nashif 2.19 - Fixed source tag * Thu Jan 8 2009 Anas Nashif 2.19 - Update to 2.19 * Tue Dec 16 2008 Anas Nashif 2.18.50.0.6 - Fixed rpmlint errors in Summary tag * Thu Dec 11 2008 Anas Nashif 2.18.50.0.6 - Do not check for ia64 * Thu Sep 18 2008 Austin Zhang 2.18.50.0.6 - add check for the info file before installation