Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v12 04/32] xbmc: add host-yasm dependency for MMX/64bit archs
Date: Sun, 8 Jun 2014 12:44:53 +0200	[thread overview]
Message-ID: <20140608104453.GA15981@free.fr> (raw)
In-Reply-To: <1402144292-27837-5-git-send-email-bernd.kuhls@t-online.de>

Bernd, All,

On 2014-06-07 14:31 +0200, Bernd Kuhls spake thusly:
> Fixes error during xbmc configure:
> 
> yasm not found, use --disable-yasm for a crippled build
> 
> If you think configure made a mistake, make sure you are using the latest
> version from Git.  If the latest version fails, report the problem to the
> ffmpeg-user at ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
> Include the log file "config.log" produced by configure as this will help
> solving the problem.
> configure: error: Submodule lib/ffmpeg failed to configure
> 
> This will be needed for 13.0 Gotham.
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

> ---
>  package/xbmc/xbmc.mk |    7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk
> index 3522802..ffe573f 100644
> --- a/package/xbmc/xbmc.mk
> +++ b/package/xbmc/xbmc.mk
> @@ -21,6 +21,13 @@ XBMC_DEPENDENCIES += boost bzip2 expat flac fontconfig freetype jasper jpeg \
>  # xbmc at i386 depends on nasm
>  XBMC_DEPENDENCIES += $(if $(BR2_i386),host-nasm)
>  
> +# ffmpeg depends on yasm on MMX archs
> +# xbmc configure passes $(BR2_ARCH) to ffmpeg configure which adds
> +# yasm as dependency for x86_64, even if BR2_x86_generic=y

Yes, all x86_64 have MMX.

Regards,
Yann E. MORIN.

> +ifneq ($(BR2_X86_CPU_HAS_MMX)$(BR2_x86_64),)
> +XBMC_DEPENDENCIES += host-yasm
> +endif
> +
>  XBMC_CONF_ENV = \
>  	PYTHON_VERSION="$(PYTHON_VERSION_MAJOR)" \
>  	PYTHON_LDFLAGS="-lpython$(PYTHON_VERSION_MAJOR) -lpthread -ldl -lutil -lm" \
> -- 
> 1.7.10.4
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

  reply	other threads:[~2014-06-08 10:44 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-07 12:31 [Buildroot] [PATCH v12 00/32] xbmc: bump version to 13.1 Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 01/32] toolchain: add option to copy the gconv libraries Bernd Kuhls
2014-06-08 13:15   ` Thomas Petazzoni
2014-06-08 13:39     ` Yann E. MORIN
2014-06-07 12:31 ` [Buildroot] [PATCH v12 02/32] xbmc: add host-gettext dependency Bernd Kuhls
2014-06-07 21:25   ` Yann E. MORIN
2014-06-08 10:45     ` Maxime Hadjinlian
2014-06-07 12:31 ` [Buildroot] [PATCH v12 03/32] xbmc: add host-nasm dependency Bernd Kuhls
2014-06-07 21:27   ` Yann E. MORIN
2014-06-07 21:29     ` Yann E. MORIN
2014-06-07 12:31 ` [Buildroot] [PATCH v12 04/32] xbmc: add host-yasm dependency for MMX/64bit archs Bernd Kuhls
2014-06-08 10:44   ` Yann E. MORIN [this message]
2014-06-07 12:31 ` [Buildroot] [PATCH v12 05/32] xbmc: add missing egl-related cflags Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 06/32] xbmc: hdmi cec supports needs udev for device scanning Bernd Kuhls
2014-06-08 11:07   ` Yann E. MORIN
2014-06-07 12:31 ` [Buildroot] [PATCH v12 07/32] xbmc: bump version to 13.1 Bernd Kuhls
2014-06-08 11:09   ` Yann E. MORIN
2014-06-07 12:31 ` [Buildroot] [PATCH v12 08/32] xbmc-pvr-addons: bump to a version compatible with XBMC Gotham Bernd Kuhls
2014-06-08 11:11   ` Yann E. MORIN
2014-06-08 11:15   ` Yann E. MORIN
2014-06-07 12:31 ` [Buildroot] [PATCH v12 09/32] xbmc-addon-xvdr: " Bernd Kuhls
2014-06-08 11:13   ` Yann E. MORIN
2014-06-07 12:31 ` [Buildroot] [PATCH v12 10/32] mesa3d: Bump version to 10.2.1, fix xa build Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 11/32] mesa3d: Depend on xorg meta package instead of xserver_xorg-server Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 12/32] mesa3d: add dependency xproto_presentproto Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 13/32] mesa3d: Remove dependency for the libxml2 module of host-python Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 14/32] mesa3d: Add dri3 support Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 15/32] mesa3d: dri2 does not need udev support Bernd Kuhls
2014-06-11 16:42   ` Yann E. MORIN
2014-06-07 12:31 ` [Buildroot] [PATCH v12 16/32] libva: new package Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 17/32] libva-intel-driver: " Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 18/32] ffmpeg: Add libva support Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 19/32] libglu: new package Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 20/32] libglew: " Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 21/32] sdl: Add new dependency libglu for opengl support Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 22/32] xdriver_xf86-video-intel: Bump version to 2.99.911 Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 23/32] xbmc: Allow compilation with uClibc Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 24/32] xbmc: Add alsa support Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 25/32] xbmc: Add lame support Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 26/32] xbmc: Fix TexturePacker compile Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 27/32] xbmc: Add X.org/OpenGL support Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 28/32] xbmc: Add option for Goom screensaver Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 29/32] xbmc: Add VA-API support Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 30/32] xbmc: fix missing libraries from rpi-userland Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 31/32] rpi-userland: cleanup *_CONF_OPT Bernd Kuhls
2014-06-07 12:31 ` [Buildroot] [PATCH v12 32/32] package/libcec: fix missing libraries from rpi-userland Bernd Kuhls
2014-06-07 12:39 ` [Buildroot] [PATCH v12 00/32] xbmc: bump version to 13.1 Yann E. MORIN
2014-06-08 13:08 ` Thomas Petazzoni
2014-06-08 13:12 ` Thomas Petazzoni

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=20140608104453.GA15981@free.fr \
    --to=yann.morin.1998@free.fr \
    --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