Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 2 | baselib = "${@d.getVar('BASE_LIB_tune-' + (d.getVar('DEFAULTTUNE') or 'INVALID')) or d.getVar('BASELIB')}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3 | |
| 4 | MULTILIB_VARIANTS = "${@extend_variants(d,'MULTILIBS','multilib')}" |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 5 | MULTILIB_SAVE_VARNAME = "DEFAULTTUNE TARGET_ARCH TARGET_SYS TARGET_VENDOR" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 6 | |
| 7 | MULTILIBS ??= "multilib:lib32" |
| 8 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 9 | STAGING_DIR_HOST = "${WORKDIR}/${MLPREFIX}recipe-sysroot" |
| 10 | STAGING_DIR_TARGET = "${WORKDIR}/${MLPREFIX}recipe-sysroot" |
| 11 | RECIPE_SYSROOT = "${WORKDIR}/${MLPREFIX}recipe-sysroot" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 12 | |
| 13 | INHERIT += "multilib_global" |
| 14 | |
| 15 | BBCLASSEXTEND_append = " ${MULTILIBS}" |
| 16 | |
| 17 | MULTILIB_GLOBAL_VARIANTS ?= "lib32 lib64 libx32" |
| 18 | |
| 19 | OPKG_ARGS_append = " --force-maintainer --force-overwrite" |
| 20 | |
| 21 | # When multilib is enabled, allarch recipes will be installed into the MACHINE |
| 22 | # sysroot, not MLPREFIXMACHINE. This means that anything using pkg-config to |
| 23 | # find an allarch pkgconfig file will fail as the PKG_CONFIG_PATH only looks |
| 24 | # inside the multilib sysroot. Fix this by explicitly adding the MACHINE's |
| 25 | # architecture-independent pkgconfig location to PKG_CONFIG_PATH. |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 26 | PKG_CONFIG_PATH .= ":${WORKDIR}/recipe-sysroot/${datadir}/pkgconfig" |
| 27 | PKG_CONFIG_PATH[vardepsexclude] = "datadir WORKDIR" |
| 28 | PKG_CONFIG_PATH[vardepvalueexclude] = ":${WORKDIR}/recipe-sysroot/${datadir}/pkgconfig" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 29 | |
| 30 | # These recipes don't need multilib variants, the ${BPN} PROVDES/RPROVDES |
| 31 | # ${MLPREFIX}${BPN} |
| 32 | NON_MULTILIB_RECIPES = "grub grub-efi make-mod-scripts" |