blob: 2a1d14b31bcd476254cdbae56ab088790331e384 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Fast open source processor emulator"
2HOMEPAGE = "http://qemu.org"
3LICENSE = "GPLv2 & LGPLv2.1"
4DEPENDS = "glib-2.0 zlib pixman"
Patrick Williamsc0f7c042017-02-23 20:41:17 -06005RDEPENDS_${PN}_class-target += "bash"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
7require qemu-targets.inc
Brad Bishop6e60e8b2018-02-01 10:27:11 -05008inherit autotools pkgconfig bluetooth
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009BBCLASSEXTEND = "native nativesdk"
10
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011# QEMU_TARGETS is overridable variable
12QEMU_TARGETS ?= "arm aarch64 i386 mips mipsel mips64 mips64el ppc sh4 x86_64"
13
Brad Bishop6e60e8b2018-02-01 10:27:11 -050014EXTRA_OECONF = " \
15 --prefix=${prefix} \
16 --bindir=${bindir} \
17 --includedir=${includedir} \
18 --libdir=${libdir} \
19 --mandir=${mandir} \
20 --datadir=${datadir} \
21 --docdir=${docdir}/${BPN} \
22 --sysconfdir=${sysconfdir} \
23 --libexecdir=${libexecdir} \
24 --localstatedir=${localstatedir} \
25 --with-confsuffix=/${BPN} \
26 --disable-strip \
27 --disable-werror \
28 --target-list=${@get_qemu_target_list(d)} \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050029 --extra-cflags='${CFLAGS}' \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030 "
Brad Bishop6e60e8b2018-02-01 10:27:11 -050031EXTRA_OECONF_append_class-native = " --python=${USRBINPATH}/python2.7"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060032
33EXTRA_OEMAKE_append_class-native = " LD='${LD}' AR='${AR}' OBJCOPY='${OBJCOPY}' LDFLAGS='${LDFLAGS}'"
34
35LDFLAGS_append_class-native = " -fuse-ld=bfd"
36
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037export LIBTOOL="${HOST_SYS}-libtool"
38
39do_configure_prepend_class-native() {
40 # Append build host pkg-config paths for native target since the host may provide sdl
41 BHOST_PKGCONFIG_PATH=$(PATH=/usr/bin:/bin pkg-config --variable pc_path pkg-config || echo "")
42 if [ ! -z "$BHOST_PKGCONFIG_PATH" ]; then
43 export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$BHOST_PKGCONFIG_PATH
Patrick Williamsc124f4f2015-09-15 14:41:29 -050044 fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -060045
46 # Alter target makefiles to accept CFLAGS set via env
47 sed -i -r \
48 -e 's/^(C|OP_C|HELPER_C)FLAGS=/\1FLAGS+=/' \
49 "${S}"/Makefile "${S}"/Makefile.target
Patrick Williamsc124f4f2015-09-15 14:41:29 -050050}
51
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052do_configure() {
Brad Bishop6e60e8b2018-02-01 10:27:11 -050053 ${S}/configure ${EXTRA_OECONF}
Patrick Williamsc124f4f2015-09-15 14:41:29 -050054 test ! -e ${S}/target-i386/beginend_funcs.sh || chmod a+x ${S}/target-i386/beginend_funcs.sh
55}
56
Patrick Williamsc124f4f2015-09-15 14:41:29 -050057do_install () {
58 export STRIP="true"
59 autotools_do_install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050060}
61
62# The following fragment will create a wrapper for qemu-mips user emulation
63# binary in order to work around a segmentation fault issue. Basically, by
64# default, the reserved virtual address space for 32-on-64 bit is set to 4GB.
65# This will trigger a MMU access fault in the virtual CPU. With this change,
66# the qemu-mips works fine.
67# IMPORTANT: This piece needs to be removed once the root cause is fixed!
68do_install_append() {
69 if [ -e "${D}/${bindir}/qemu-mips" ]; then
70 create_wrapper ${D}/${bindir}/qemu-mips \
71 QEMU_RESERVED_VA=0x0
72 fi
73}
74# END of qemu-mips workaround
75
76PACKAGECONFIG ??= " \
77 fdt sdl \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050078 fdt sdl kvm \
79 ${@bb.utils.filter('DISTRO_FEATURES', 'alsa xen', d)} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050080 "
Brad Bishop6e60e8b2018-02-01 10:27:11 -050081PACKAGECONFIG_class-native ??= "fdt alsa kvm"
82PACKAGECONFIG_class-nativesdk ??= "fdt sdl kvm"
83
84# Handle distros such as CentOS 5 32-bit that do not have kvm support
85PACKAGECONFIG_class-native_remove = "${@'kvm' if not os.path.exists('/usr/include/linux/kvm.h') else ''}"
86
87# Disable kvm on targets that do not support it
88PACKAGECONFIG_remove_darwin = "kvm"
89PACKAGECONFIG_remove_mingw32 = "kvm"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060090
91PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050092PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr,--disable-virtfs,libcap attr,"
93PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio,"
94PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs,"
95PACKAGECONFIG[xen] = "--enable-xen,--disable-xen,xen,xen-libxenstore xen-libxenctrl xen-libxenguest"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050096PACKAGECONFIG[vnc-sasl] = "--enable-vnc --enable-vnc-sasl,--disable-vnc-sasl,cyrus-sasl,"
97PACKAGECONFIG[vnc-jpeg] = "--enable-vnc --enable-vnc-jpeg,--disable-vnc-jpeg,jpeg,"
98PACKAGECONFIG[vnc-png] = "--enable-vnc --enable-vnc-png,--disable-vnc-png,libpng,"
99PACKAGECONFIG[libcurl] = "--enable-curl,--disable-curl,libcurl,"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500100PACKAGECONFIG[nss] = "--enable-smartcard,--disable-smartcard,nss,"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500101PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses,"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600102PACKAGECONFIG[gtk+] = "--enable-gtk --with-gtkabi=3.0 --enable-vte,--disable-gtk --disable-vte,gtk+3 vte"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500103PACKAGECONFIG[libcap-ng] = "--enable-cap-ng,--disable-cap-ng,libcap-ng,"
104PACKAGECONFIG[ssh2] = "--enable-libssh2,--disable-libssh2,libssh2,"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500105PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt,"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500106PACKAGECONFIG[nettle] = "--enable-nettle,--disable-nettle,nettle"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500107PACKAGECONFIG[libusb] = "--enable-libusb,--disable-libusb,libusb1"
108PACKAGECONFIG[fdt] = "--enable-fdt,--disable-fdt,dtc"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500109PACKAGECONFIG[alsa] = "--audio-drv-list='oss alsa',,alsa-lib"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500110PACKAGECONFIG[glx] = "--enable-opengl,--disable-opengl,mesa"
111PACKAGECONFIG[lzo] = "--enable-lzo,--disable-lzo,lzo"
112PACKAGECONFIG[numa] = "--enable-numa,--disable-numa,numactl"
113PACKAGECONFIG[gnutls] = "--enable-gnutls,--disable-gnutls,gnutls"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600114PACKAGECONFIG[bzip2] = "--enable-bzip2,--disable-bzip2,bzip2"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500115PACKAGECONFIG[bluez] = "--enable-bluez,--disable-bluez,${BLUEZ}"
116PACKAGECONFIG[libiscsi] = "--enable-libiscsi,--disable-libiscsi"
117PACKAGECONFIG[kvm] = "--enable-kvm,--disable-kvm"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500118
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500119INSANE_SKIP_${PN} = "arch"