Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <jacmet@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 03/30] package/qemu: build for the target (i386 or x86_64 only)
Date: Sun, 12 Oct 2014 18:54:06 +0200	[thread overview]
Message-ID: <87a951ut3l.fsf@dell.be.48ers.dk> (raw)
In-Reply-To: <f15ea9ea593b2f7ef9543cc09ac0d779a8dc8f49.1412719495.git.yann.morin.1998@free.fr> (Yann E. MORIN's message of "Wed, 8 Oct 2014 00:38:12 +0200")

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > Untested for other architectures, so only enabled for known-working ones.
 > We explicitly disable all features that depends on other packages,
 > for now. Such features will be added one by one in the next patches.
 > Features that do not rely on external packages are explicitly enabled
 > to catch the dependencies on toolchain features early.

 > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
 > Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 > ---
 >  package/Config.in      |  1 +
 >  package/qemu/Config.in | 26 ++++++++++++++++++
 >  package/qemu/qemu.mk   | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++
 >  3 files changed, 99 insertions(+)
 >  create mode 100644 package/qemu/Config.in

 > diff --git a/package/Config.in b/package/Config.in
 > index 2dbe6f8..fe3e03c 100644
 > --- a/package/Config.in
 > +++ b/package/Config.in
 > @@ -926,6 +926,7 @@ menu "Miscellaneous"
 >  	source "package/haveged/Config.in"
 >  	source "package/mcrypt/Config.in"
 >  	source "package/mobile-broadband-provider-info/Config.in"
 > +	source "package/qemu/Config.in"
 >  	source "package/shared-mime-info/Config.in"
 >  	source "package/snowball-init/Config.in"
 >  	source "package/sound-theme-borealis/Config.in"
 > diff --git a/package/qemu/Config.in b/package/qemu/Config.in
 > new file mode 100644
 > index 0000000..d323305
 > --- /dev/null
 > +++ b/package/qemu/Config.in
 > @@ -0,0 +1,26 @@
 > +comment "QEMU requires a toolchain with threads"
 > +	depends on BR2_i386 || BR2_x86_64
 > +	depends on !BR2_TOOLCHAIN_HAS_THREADS
 > +
 > +config BR2_PACKAGE_QEMU
 > +	bool "QEMU"
 > +	depends on BR2_i386 || BR2_x86_64
 > +	depends on BR2_TOOLCHAIN_HAS_THREADS
 > +	select BR2_PACKAGE_LIBGLIB2
 > +	select BR2_PACKAGE_PIXMAN
 > +	select BR2_PACKAGE_ZLIB

You forgot to propagate the toolchain dependencies of the libraries -
Libglib2 needs wchar and mmu (and qemu seems to contain plenty of
references to fork() as well).

Committed with that fixed, thanks.

-- 
Bye, Peter Korsgaard

  reply	other threads:[~2014-10-12 16:54 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-07 22:38 [Buildroot] [PATCH 0/30] QEMU on the target (branch yem/target-qemu) Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 01/30] package/qemu: do not use autotools for qemu Yann E. MORIN
2014-10-12 16:52   ` Peter Korsgaard
2014-10-07 22:38 ` [Buildroot] [PATCH 02/30] package/qemu: bump version Yann E. MORIN
2014-10-12 16:52   ` Peter Korsgaard
2014-10-07 22:38 ` [Buildroot] [PATCH 03/30] package/qemu: build for the target (i386 or x86_64 only) Yann E. MORIN
2014-10-12 16:54   ` Peter Korsgaard [this message]
2014-10-07 22:38 ` [Buildroot] [PATCH 04/30] package/qemu: add basic target selection Yann E. MORIN
2014-10-12 16:59   ` Peter Korsgaard
2014-10-07 22:38 ` [Buildroot] [PATCH 05/30] package/qemu: add fine-grained " Yann E. MORIN
2014-10-12 17:06   ` Peter Korsgaard
2014-10-07 22:38 ` [Buildroot] [PATCH 06/30] package/qemu: add SDL frontends Yann E. MORIN
2014-10-12 17:14   ` Peter Korsgaard
2014-10-07 22:38 ` [Buildroot] [PATCH 07/30] package/qemu: add option to enable/disable the VNC frontend Yann E. MORIN
2014-10-12 17:19   ` Peter Korsgaard
2014-10-07 22:38 ` [Buildroot] [PATCH 08/30] package/qemu: add VNC jpeg and png compression Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 09/30] package/qemu: add VNC TLS-encryption Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 10/30] package/qemu: add option to not install blobs Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 11/30] package/qemu: add option to remove unwanted keymaps Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 12/30] package/qemu: add uuid support Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 13/30] package/qemu: add support for capabilities Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 14/30] package/qemu: add attr/xattr option Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 15/30] package/qemu: add support for virtfs Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 16/30] package/qemu: add support for cURL Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 17/30] package/qemu: enable use of the curses frontend Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 18/30] package/qemu: add BlueZ connectivity Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 19/30] package/qemu: add AIO support Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 20/30] package/qemu: add support for VDE switches Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 21/30] package/qemu: add iSCSI support Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 22/30] package/qemu: add support for USB redirection Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 23/30] package/qemu: add support for Spice Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 24/30] package/qemu: enable sound Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 25/30] package/qemu: add support for libseccomp Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 26/30] package/qemu: option to build the docs Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 27/30] package/qemu: add option to install tools on the target Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 28/30] package/qemu: move sub-options into a sub-menu Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 29/30] package/qemu: enable a static build Yann E. MORIN
2014-10-07 22:38 ` [Buildroot] [PATCH 30/30] package/qemu: add support for FDT Yann E. MORIN

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87a951ut3l.fsf@dell.be.48ers.dk \
    --to=jacmet@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox