blob: e176b5cff1abf8a59b95cc3dce8538227116d87a [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
Patrick Williams520786c2023-06-25 16:20:36 -050036FILES:${PN}-staticdev += "${libdir}/gprofng/*.a"
37
Patrick Williamsc124f4f2015-09-15 14:41:29 -050038# Rather than duplicating multiple entries for these, make one
39# list and reuse it.
40
Andrew Geissler87f5cff2022-09-30 13:13:31 -050041GPROFNGS = " \
42 gp-archive \
43 gp-collect-app \
44 gp-display-html \
45 gp-display-src \
46 gp-display-text \
47 gprofng \
48"
49
50# it disables gprofng for clang and musl in the bb file
51GPROFNGS:toolchain-clang = ""
52GPROFNGS:libc-musl = ""
53
54GPROFNG_ALTS ?= ""
55GPROFNG_ALTS:x86 = "${GPROFNGS}"
56GPROFNG_ALTS:x86-64 = "${GPROFNGS}"
57GPROFNG_ALTS:aarch64 = "${GPROFNGS}"
58
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080059LDGOLD_ALTS ?= "ld.gold dwp"
Patrick Williams213cb262021-08-07 19:21:33 -050060LDGOLD_ALTS:riscv64 = ""
61LDGOLD_ALTS:riscv32 = ""
Patrick Williams864cc432023-02-09 14:54:44 -060062LDGOLD_ALTS:loongarch64 = ""
Patrick Williams213cb262021-08-07 19:21:33 -050063LDGOLD_ALTS:libc-glibc:mipsarch = ""
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080064
Patrick Williamsc124f4f2015-09-15 14:41:29 -050065USE_ALTERNATIVES_FOR = " \
66 addr2line \
67 ar \
68 as \
69 c++filt \
70 elfedit \
71 gprof \
Andrew Geissler87f5cff2022-09-30 13:13:31 -050072 ${GPROFNG_ALTS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050073 ld \
74 ld.bfd \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080075 ${LDGOLD_ALTS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076 nm \
77 objcopy \
78 objdump \
79 ranlib \
80 readelf \
81 size \
82 strings \
83 strip \
84"
85
Patrick Williams213cb262021-08-07 19:21:33 -050086python do_package:prepend() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050087 make_alts = d.getVar("USE_ALTERNATIVES_FOR") or ""
88 prefix = d.getVar("TARGET_PREFIX")
89 bindir = d.getVar("bindir")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050090 for alt in make_alts.split():
91 d.setVarFlag('ALTERNATIVE_TARGET', alt, bindir + "/" + prefix + alt)
92 d.setVarFlag('ALTERNATIVE_LINK_NAME', alt, bindir + "/" + alt)
93}
94
Patrick Williamsc124f4f2015-09-15 14:41:29 -050095B = "${S}/build.${HOST_SYS}.${TARGET_SYS}"
96
97EXTRA_OECONF = "--program-prefix=${TARGET_PREFIX} \
98 --disable-werror \
Patrick Williamsc0f7c042017-02-23 20:41:17 -060099 --enable-deterministic-archives \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500100 --enable-plugins \
Andrew Geisslerfc113ea2023-03-31 09:59:46 -0500101 --enable-new-dtags \
Andrew Geissler82c905d2020-04-13 13:39:40 -0500102 --disable-gdb \
103 --disable-gdbserver \
104 --disable-libdecnumber \
105 --disable-readline \
106 --disable-sim \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500107 ${LDGOLD} \
Andrew Geissler82c905d2020-04-13 13:39:40 -0500108 ${EXTRA_TARGETS} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500109 ${@bb.utils.contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)}"
110
Andrew Geissler82c905d2020-04-13 13:39:40 -0500111EXTRA_TARGETS = ""
Patrick Williams213cb262021-08-07 19:21:33 -0500112EXTRA_TARGETS:x86-64 = " --enable-targets=x86_64-pe,x86_64-pep "
113EXTRA_TARGETS:class-native = ""
Andrew Geissler82c905d2020-04-13 13:39:40 -0500114
Patrick Williams213cb262021-08-07 19:21:33 -0500115LDGOLD:class-native = ""
116LDGOLD:class-crosssdk = ""
117LDGOLD:libc-glibc:mipsarch = ""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500118LDGOLD ?= "${@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 -0500119
Andrew Geissler82c905d2020-04-13 13:39:40 -0500120
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500121# This is necessary due to a bug in the binutils Makefiles
122# EXTRA_OEMAKE = "configure-build-libiberty all"
123
124export AR = "${HOST_PREFIX}ar"
125export AS = "${HOST_PREFIX}as"
126export LD = "${HOST_PREFIX}ld"
127export NM = "${HOST_PREFIX}nm"
128export RANLIB = "${HOST_PREFIX}ranlib"
129export OBJCOPY = "${HOST_PREFIX}objcopy"
130export OBJDUMP = "${HOST_PREFIX}objdump"
131
132export AR_FOR_TARGET = "${TARGET_PREFIX}ar"
133export AS_FOR_TARGET = "${TARGET_PREFIX}as"
134export LD_FOR_TARGET = "${TARGET_PREFIX}ld"
135export NM_FOR_TARGET = "${TARGET_PREFIX}nm"
136export RANLIB_FOR_TARGET = "${TARGET_PREFIX}ranlib"
137
138export CC_FOR_HOST = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}"
139export CXX_FOR_HOST = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}"
140
141# autotools.bbclass sets the _FOR_BUILD variables, but for some reason we need
142# to unset LD_LIBRARY_PATH.
143export CC_FOR_BUILD = "LD_LIBRARY_PATH= ${BUILD_CC}"
144
145MULTIARCH := "${@bb.utils.contains("DISTRO_FEATURES", "multiarch", "yes", "no", d)}"
146do_configure[vardeps] += "MULTIARCH"
147do_configure () {
Andrew Geissler82c905d2020-04-13 13:39:40 -0500148 (cd ${S} && gnu-configize)
149
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500150 oe_runconf
151#
152# must prime config.cache to ensure the build of libiberty
153#
154 mkdir -p ${B}/build-${BUILD_SYS}
155 for i in ${CONFIG_SITE}; do
156 cat $i >> ${B}/build-${BUILD_SYS}/config.cache || true
157 done
158}
159
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500160do_install () {
161 autotools_do_install
162
163 # We don't really need these, so we'll remove them...
164 rm -rf ${D}${libdir}/ldscripts
165
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800166 bindir_rel=${@os.path.relpath('${bindir}', '${prefix}/${TARGET_SYS}/bin')}
167
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500168 # Fix the /usr/${TARGET_SYS}/bin/* links
169 for l in ${D}${prefix}/${TARGET_SYS}/bin/*; do
170 rm -f $l
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800171 ln -sf $bindir_rel/${TARGET_PREFIX}`basename $l` $l
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500172 done
173
174 # Install the libiberty header
175 install -d ${D}${includedir}
176 install -m 644 ${S}/include/ansidecl.h ${D}${includedir}
177 install -m 644 ${S}/include/libiberty.h ${D}${includedir}
178
Andrew Geissler82c905d2020-04-13 13:39:40 -0500179 # insall pic version of libiberty if available
180 if [ -e ${B}/libiberty/pic/libiberty.a ]; then
181 install -Dm 0644 ${B}/libiberty/pic/libiberty.a ${D}${libdir}/libiberty.a
182 fi
183
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500184 cd ${D}${bindir}
185
186 # Symlinks for ease of running these on the native target
187 for p in ${TARGET_PREFIX}* ; do
188 ln -sf $p `echo $p | sed -e s,${TARGET_PREFIX},,`
189 done
190
191 for alt in ${USE_ALTERNATIVES_FOR}; do
192 rm -f ${D}${bindir}/$alt
193 done
194
195 oe_multilib_header bfd.h
196}
197
198inherit update-alternatives
199
200ALTERNATIVE_PRIORITY = "100"
201
Patrick Williams213cb262021-08-07 19:21:33 -0500202ALTERNATIVE:${PN}:class-target = "${USE_ALTERNATIVES_FOR}"
Andrew Geissler82c905d2020-04-13 13:39:40 -0500203
204python () {
Patrick Williams864cc432023-02-09 14:54:44 -0600205 if bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', True, False, d) and bb.utils.contains_any('TARGET_ARCH', 'riscv32 riscv64 loongarch64', True, False, d):
206 bb.fatal("Gold linker does not _yet_ support RISC-V and LoongArch architecture please remove ld-is-gold from DISTRO_FEATURES")
Andrew Geissler82c905d2020-04-13 13:39:40 -0500207}