]> git.ipfire.org Git - ipfire-3.x.git/blame - binutils/binutils.nm
binutils: Update to 2.26
[ipfire-3.x.git] / binutils / binutils.nm
CommitLineData
166a6c21 1###############################################################################
802ea3af
MT
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
166a6c21
MT
4###############################################################################
5
802ea3af 6name = binutils
ea5329d6 7version = 2.26
4c4a5d3c 8release = 1
166a6c21 9
802ea3af
MT
10maintainer = Michael Tremer <michael.tremer@ipfire.org>
11groups = Development/Tools
12url = http://www.gnu.org/software/binutils/
13license = GPLv2+
14summary = The GNU Binutils are a collection of binary tools.
166a6c21 15
802ea3af
MT
16description
17 The GNU Binary Utilities, or binutils, is a collection of programming
166a6c21 18 tools for the manipulation of object code in various object file formats.
802ea3af
MT
19end
20
ea5329d6 21source_dl = http://ftp.gnu.org/gnu/binutils/
802ea3af
MT
22
23build
24 requires
25 bison
26 dejagnu
27 flex
28 gcc-c++
e5e21531 29 pakfire-builder >= 0.9.23-5
602900c1 30 perl
802ea3af
MT
31 texinfo
32 zlib-devel
33 end
34
35 prepare_cmds
36 mkdir -pv %{DIR_SRC}/binutils-build
37
602900c1
MT
38 # On aarch64 we might use 64KiB pages
39 sed -i -e '/#define.*ELF_COMMONPAGESIZE/s/0x1000$/0x10000/' bfd/elf*aarch64.c
40
802ea3af
MT
41 # Suppress the installation of an outdated standards.info file as a newer
42 # one is installed later on in the Autoconf instructions:
43 rm -fv etc/standards.info
44 sed -e '/^INFO/s/standards.info //' -i etc/Makefile.in
45
602900c1 46 perl -pi -e 's/i\[3-7\]86/i[34567]86/g' */conf*
802ea3af 47 sed -i -e 's/%''{release}/%{release}/g' bfd/Makefile{.am,.in}
602900c1
MT
48 sed -i -e '/^libopcodes_la_\(DEPENDENCIES\|LIBADD\)/s,$, ../bfd/libbfd.la,' opcodes/Makefile.{am,in}
49
50 # Build libbfd.so and libopcodes.so with -Bsymbolic-functions if possible.
51 if gcc %{CFLAGS} -v --help 2>&1 | grep -q -- -Bsymbolic-functions; then
52 sed -i -e 's/^libbfd_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' bfd/Makefile.{am,in}
53 sed -i -e 's/^libopcodes_la_LDFLAGS = /&-Wl,-Bsymbolic-functions /' opcodes/Makefile.{am,in}
54 fi
55 touch */configure
802ea3af
MT
56 end
57
bb86d46e 58 configure_options += \
f71c9576
MT
59 --build=%{DISTRO_BUILDTARGET} \
60 --host=%{DISTRO_BUILDTARGET} \
bb86d46e
MT
61 --target=%{DISTRO_BUILDTARGET} \
62 --disable-werror \
f71c9576
MT
63 --disable-static \
64 --enable-64-bit-bfd \
65 --enable-plugins \
66 --with-bugurl="http://bugzilla.ipfire.org/"
802ea3af
MT
67
68 build
68b0def9
MT
69 cd %{DIR_SRC}/binutils-build
70 ../%{thisapp}/configure \
bb86d46e 71 %{configure_options}
68b0def9
MT
72
73 make tooldir=/usr %{PARALLELISMFLAGS}
802ea3af
MT
74 end
75
0c98d65a
MT
76 test
77 cd %{DIR_SRC}/binutils-build
78 make -k check </dev/null || :
79
80 echo "==== RESULTS ===="
81 cat {gas/testsuite/gas,ld/ld,binutils/binutils}.sum
82 end
802ea3af
MT
83
84 install
0c98d65a
MT
85 cd %{DIR_SRC}/binutils-build
86 make tooldir=/usr install DESTDIR=%{BUILDROOT}
802ea3af
MT
87
88 cp -fv %{DIR_APP}/include/libiberty.h %{BUILDROOT}/usr/include
d5518e81
MT
89
90 # Prevent packages from linking against libbfd and libopcodes,
91 # because they change too often.
bb86d46e 92 rm -rfv %{BUILDROOT}%{libdir}/lib{bfd,opcodes}.so
0c98d65a
MT
93
94 # Remove Windows/Novell only man pages.
95 rm -vf %{BUILDROOT}%{mandir}/man1/{dlltool,nlmconv,windres}*
802ea3af 96 end
68b0def9
MT
97
98 # Keep static version of libiberty.
99 keep_libraries
bb86d46e 100 %{libdir}/libiberty.a
68b0def9 101 end
802ea3af
MT
102end
103
104packages
105 package %{name}
e5e21531
MT
106 provides
107 bundled(libiberty)
108 end
109 end
974699b4
MT
110
111 package %{name}-devel
112 template DEVEL
f45434a7 113
e5e21531
MT
114 requires
115 binutils = %{thisver}
116 zlib-devel
117 end
118
f45434a7
MT
119 # Don't package libbfd and libopcodes in the -devel package.
120 files
121 /usr/include
56c5b2e4 122 %{libdir}/*.a
f45434a7 123 end
802ea3af 124 end
1f9bc2f0
MT
125
126 package %{name}-debuginfo
127 template DEBUGINFO
128 end
802ea3af 129end