blob: 98acf0a222bc64fa5e7b9d0628a32864eb20239e [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "GNU binary utilities"
2DESCRIPTION = "The GNU Binutils are a collection of binary tools. \
3The main ones are ld (GNU Linker), and as (GNU Assembler). This \
4package also includes addition tools such as addr2line (Converts \
5addresses into filenames and line numbers), ar (utility for creating, \
6modifying and extracting archives), nm (list symbols in object \
7files), objcopy (copy and translate object files), objdump (Display \
8object information), and other tools and related libraries."
9HOMEPAGE = "http://www.gnu.org/software/binutils/"
10BUGTRACKER = "http://sourceware.org/bugzilla/"
11SECTION = "devel"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000012LICENSE = "GPL-3.0-only"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
14DEPENDS = "flex-native bison-native zlib-native gnu-config-native autoconf-native"
15
Andrew Geissler5199d832021-09-24 16:47:35 -050016inherit autotools gettext multilib_header pkgconfig texinfo
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017
Patrick Williams213cb262021-08-07 19:21:33 -050018FILES:${PN} = " \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019 ${bindir}/${TARGET_PREFIX}* \
Andrew Geissler82c905d2020-04-13 13:39:40 -050020 ${libdir}/lib*.so.* \
Andrew Geisslerd1e89492021-02-12 15:35:20 -060021 ${libdir}/bfd-plugins/lib*.so \
Andrew Geissler82c905d2020-04-13 13:39:40 -050022 ${libdir}/lib*-${PV}*.so \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023 ${prefix}/${TARGET_SYS}/bin/* \
24 ${bindir}/embedspu"
25
Patrick Williams213cb262021-08-07 19:21:33 -050026RPROVIDES:${PN} += "${PN}-symlinks"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027
Patrick Williams213cb262021-08-07 19:21:33 -050028FILES:${PN}-dev = " \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029 ${includedir} \
30 ${libdir}/*.la \
31 ${libdir}/libbfd.so \
Andrew Geissler82c905d2020-04-13 13:39:40 -050032 ${libdir}/libctf.so \
33 ${libdir}/libctf-nobfd.so \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034 ${libdir}/libopcodes.so"
35
36# Rather than duplicating multiple entries for these, make one
37# list and reuse it.
38
Andrew Geissler87f5cff2022-09-30 13:13:31 -050039GPROFNGS = " \
40 gp-archive \
41 gp-collect-app \
42 gp-display-html \
43 gp-display-src \
44 gp-display-text \
45 gprofng \
46"
47
48# it disables gprofng for clang and musl in the bb file
49GPROFNGS:toolchain-clang = ""
50GPROFNGS:libc-musl = ""
51
52GPROFNG_ALTS ?= ""
53GPROFNG_ALTS:x86 = "${GPROFNGS}"
54GPROFNG_ALTS:x86-64 = "${GPROFNGS}"
55GPROFNG_ALTS:aarch64 = "${GPROFNGS}"
56
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080057LDGOLD_ALTS ?= "ld.gold dwp"
Patrick Williams213cb262021-08-07 19:21:33 -050058LDGOLD_ALTS:riscv64 = ""
59LDGOLD_ALTS:riscv32 = ""
60LDGOLD_ALTS:libc-glibc:mipsarch = ""
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080061
Patrick Williamsc124f4f2015-09-15 14:41:29 -050062USE_ALTERNATIVES_FOR = " \
63 addr2line \
64 ar \
65 as \
66 c++filt \
67 elfedit \
68 gprof \
Andrew Geissler87f5cff2022-09-30 13:13:31 -050069 ${GPROFNG_ALTS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050070 ld \
71 ld.bfd \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080072 ${LDGOLD_ALTS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050073 nm \
74 objcopy \
75 objdump \
76 ranlib \
77 readelf \
78 size \
79 strings \
80 strip \
81"
82
Patrick Williams213cb262021-08-07 19:21:33 -050083python do_package:prepend() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050084 make_alts = d.getVar("USE_ALTERNATIVES_FOR") or ""
85 prefix = d.getVar("TARGET_PREFIX")
86 bindir = d.getVar("bindir")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050087 for alt in make_alts.split():
88 d.setVarFlag('ALTERNATIVE_TARGET', alt, bindir + "/" + prefix + alt)
89 d.setVarFlag('ALTERNATIVE_LINK_NAME', alt, bindir + "/" + alt)
90}
91
Patrick Williamsc124f4f2015-09-15 14:41:29 -050092B = "${S}/build.${HOST_SYS}.${TARGET_SYS}"
93
94EXTRA_OECONF = "--program-prefix=${TARGET_PREFIX} \
95 --disable-werror \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060096 --enable-deterministic-archives \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050097 --enable-plugins \
Andrew Geissler82c905d2020-04-13 13:39:40 -050098 --disable-gdb \
99 --disable-gdbserver \
100 --disable-libdecnumber \
101 --disable-readline \
102 --disable-sim \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500103 ${LDGOLD} \
Andrew Geissler82c905d2020-04-13 13:39:40 -0500104 ${EXTRA_TARGETS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500105 ${@bb.utils.contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)}"
106
Andrew Geissler82c905d2020-04-13 13:39:40 -0500107EXTRA_TARGETS = ""
Patrick Williams213cb262021-08-07 19:21:33 -0500108EXTRA_TARGETS:x86-64 = " --enable-targets=x86_64-pe,x86_64-pep "
109EXTRA_TARGETS:class-native = ""
Andrew Geissler82c905d2020-04-13 13:39:40 -0500110
Patrick Williams213cb262021-08-07 19:21:33 -0500111LDGOLD:class-native = ""
112LDGOLD:class-crosssdk = ""
113LDGOLD:libc-glibc:mipsarch = ""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500114LDGOLD ?= "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--enable-gold=default --enable-threads', '--enable-gold --enable-ld=default --enable-threads', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500115
Andrew Geissler82c905d2020-04-13 13:39:40 -0500116
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500117# This is necessary due to a bug in the binutils Makefiles
118# EXTRA_OEMAKE = "configure-build-libiberty all"
119
120export AR = "${HOST_PREFIX}ar"
121export AS = "${HOST_PREFIX}as"
122export LD = "${HOST_PREFIX}ld"
123export NM = "${HOST_PREFIX}nm"
124export RANLIB = "${HOST_PREFIX}ranlib"
125export OBJCOPY = "${HOST_PREFIX}objcopy"
126export OBJDUMP = "${HOST_PREFIX}objdump"
127
128export AR_FOR_TARGET = "${TARGET_PREFIX}ar"
129export AS_FOR_TARGET = "${TARGET_PREFIX}as"
130export LD_FOR_TARGET = "${TARGET_PREFIX}ld"
131export NM_FOR_TARGET = "${TARGET_PREFIX}nm"
132export RANLIB_FOR_TARGET = "${TARGET_PREFIX}ranlib"
133
134export CC_FOR_HOST = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}"
135export CXX_FOR_HOST = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}"
136
137# autotools.bbclass sets the _FOR_BUILD variables, but for some reason we need
138# to unset LD_LIBRARY_PATH.
139export CC_FOR_BUILD = "LD_LIBRARY_PATH= ${BUILD_CC}"
140
141MULTIARCH := "${@bb.utils.contains("DISTRO_FEATURES", "multiarch", "yes", "no", d)}"
142do_configure[vardeps] += "MULTIARCH"
143do_configure () {
Andrew Geissler82c905d2020-04-13 13:39:40 -0500144 (cd ${S} && gnu-configize)
145
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500146 oe_runconf
147#
148# must prime config.cache to ensure the build of libiberty
149#
150 mkdir -p ${B}/build-${BUILD_SYS}
151 for i in ${CONFIG_SITE}; do
152 cat $i >> ${B}/build-${BUILD_SYS}/config.cache || true
153 done
154}
155
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500156do_install () {
157 autotools_do_install
158
159 # We don't really need these, so we'll remove them...
160 rm -rf ${D}${libdir}/ldscripts
161
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800162 bindir_rel=${@os.path.relpath('${bindir}', '${prefix}/${TARGET_SYS}/bin')}
163
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500164 # Fix the /usr/${TARGET_SYS}/bin/* links
165 for l in ${D}${prefix}/${TARGET_SYS}/bin/*; do
166 rm -f $l
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800167 ln -sf $bindir_rel/${TARGET_PREFIX}`basename $l` $l
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500168 done
169
170 # Install the libiberty header
171 install -d ${D}${includedir}
172 install -m 644 ${S}/include/ansidecl.h ${D}${includedir}
173 install -m 644 ${S}/include/libiberty.h ${D}${includedir}
174
Andrew Geissler82c905d2020-04-13 13:39:40 -0500175 # insall pic version of libiberty if available
176 if [ -e ${B}/libiberty/pic/libiberty.a ]; then
177 install -Dm 0644 ${B}/libiberty/pic/libiberty.a ${D}${libdir}/libiberty.a
178 fi
179
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500180 cd ${D}${bindir}
181
182 # Symlinks for ease of running these on the native target
183 for p in ${TARGET_PREFIX}* ; do
184 ln -sf $p `echo $p | sed -e s,${TARGET_PREFIX},,`
185 done
186
187 for alt in ${USE_ALTERNATIVES_FOR}; do
188 rm -f ${D}${bindir}/$alt
189 done
190
191 oe_multilib_header bfd.h
192}
193
194inherit update-alternatives
195
196ALTERNATIVE_PRIORITY = "100"
197
Patrick Williams213cb262021-08-07 19:21:33 -0500198ALTERNATIVE:${PN}:class-target = "${USE_ALTERNATIVES_FOR}"
Andrew Geissler82c905d2020-04-13 13:39:40 -0500199
200python () {
201 if bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', True, False, d) and bb.utils.contains_any('TARGET_ARCH', 'riscv32 riscv64', True, False, d):
202 bb.fatal("Gold linker does not _yet_ support RISC-V architecture please remove ld-is-gold from DISTRO_FEATURES")
203}