binutils-2.30-GCCcore-6.4.0.eb 873 B

1234567891011121314151617181920212223242526
  1. name = 'binutils'
  2. version = '2.30'
  3. homepage = 'http://directory.fsf.org/project/binutils/'
  4. description = "binutils: GNU binary utilities"
  5. toolchain = {'name': 'GCCcore', 'version': '6.4.0'}
  6. source_urls = [GNU_SOURCE]
  7. sources = [SOURCE_TAR_GZ]
  8. patches = ['binutils-%(version)s_fix-assertion-fail-elf.patch']
  9. checksums = [
  10. '8c3850195d1c093d290a716e20ebcaa72eda32abf5e3d8611154b39cff79e9ea', # binutils-2.30.tar.gz
  11. '7a661190c973287642296dd9fb30ff45dc26ae2138f7761cd8362f7e412ff5ab', # binutils-2.30_fix-assertion-fail-elf.patch
  12. ]
  13. builddependencies = [
  14. ('flex', '2.6.4'),
  15. ('Bison', '3.0.4'),
  16. # zlib required, but being linked in statically, so not a runtime dep
  17. ('zlib', '1.2.11'),
  18. # use same binutils version that was used when building GCC toolchain, to 'bootstrap' this binutils
  19. ('binutils', version, '', True)
  20. ]
  21. moduleclass = 'tools'