All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] libjpeg-turbo: don't depend on NASM for non-x86 targets
@ 2017-04-03 12:04 Ross Burton
  2017-04-03 17:03 ` Andre McCurdy
  0 siblings, 1 reply; 4+ messages in thread
From: Ross Burton @ 2017-04-03 12:04 UTC (permalink / raw)
  To: openembedded-core

NASM is a x86-specific assembler so it is only required when building for x86
targets.  Use x86-architecture and class-target overrides to depend on NASM, but
explicitly disable and don't depend on it for native as complications in the
native overrides meant NASM was enabled for x86-64 but disabled for x86 (this
will be investigated later).

Original patch by Tristan Van Berkom <tristan.vanberkom@codethink.co.uk>, more
work to solve selftest failures by Richard Purdie
<richard.purdie@linuxfoundation.org>.  I just wrote a nice commit message.

Signed-off-by: Ross Burton <ross.burton@intel.com>
---
 meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
index 70d38f4..6f407cc 100644
--- a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
+++ b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
@@ -7,7 +7,8 @@ LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=13;md5=05bab7c7ad899d85bfba60da1a127
                     file://jpeglib.h;endline=16;md5=f67d70e547a2662c079781c72f877f72 \
                     file://djpeg.c;endline=11;md5=b90b6d2b4119f9e5807cd273f525d2af \
 "
-DEPENDS = "nasm-native"
+DEPENDS_append_x86-64_class-target = " nasm-native"
+DEPENDS_append_x86_class-target    = " nasm-native"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
            file://fix-mips.patch"
@@ -26,6 +27,9 @@ RCONFLICTS_${PN} += "jpeg"
 
 inherit autotools pkgconfig
 
+# Add nasm-native dependency consistently for all build arches is hard
+EXTRA_OECONF_append_class-native = "--without-simd"
+
 # Work around missing x32 ABI support
 EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", "--without-simd", "", d)}"
 
-- 
2.8.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH V2] libjpeg-turbo: don't depend on NASM for non-x86 targets
  2017-04-03 12:04 [PATCH V2] libjpeg-turbo: don't depend on NASM for non-x86 targets Ross Burton
@ 2017-04-03 17:03 ` Andre McCurdy
  2017-04-03 17:25   ` Burton, Ross
  0 siblings, 1 reply; 4+ messages in thread
From: Andre McCurdy @ 2017-04-03 17:03 UTC (permalink / raw)
  To: Ross Burton; +Cc: OE Core mailing list

On Mon, Apr 3, 2017 at 5:04 AM, Ross Burton <ross.burton@intel.com> wrote:
> NASM is a x86-specific assembler so it is only required when building for x86
> targets.  Use x86-architecture and class-target overrides to depend on NASM, but
> explicitly disable and don't depend on it for native as complications in the
> native overrides meant NASM was enabled for x86-64 but disabled for x86 (this
> will be investigated later).
>
> Original patch by Tristan Van Berkom <tristan.vanberkom@codethink.co.uk>, more
> work to solve selftest failures by Richard Purdie
> <richard.purdie@linuxfoundation.org>.  I just wrote a nice commit message.
>
> Signed-off-by: Ross Burton <ross.burton@intel.com>
> ---
>  meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
> index 70d38f4..6f407cc 100644
> --- a/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
> +++ b/meta/recipes-graphics/jpeg/libjpeg-turbo_1.5.1.bb
> @@ -7,7 +7,8 @@ LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=13;md5=05bab7c7ad899d85bfba60da1a127
>                      file://jpeglib.h;endline=16;md5=f67d70e547a2662c079781c72f877f72 \
>                      file://djpeg.c;endline=11;md5=b90b6d2b4119f9e5807cd273f525d2af \
>  "
> -DEPENDS = "nasm-native"
> +DEPENDS_append_x86-64_class-target = " nasm-native"
> +DEPENDS_append_x86_class-target    = " nasm-native"
>
>  SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
>             file://fix-mips.patch"
> @@ -26,6 +27,9 @@ RCONFLICTS_${PN} += "jpeg"
>
>  inherit autotools pkgconfig
>
> +# Add nasm-native dependency consistently for all build arches is hard
> +EXTRA_OECONF_append_class-native = "--without-simd"

Missing space?

> +
>  # Work around missing x32 ABI support
>  EXTRA_OECONF_append_class-target = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", "--without-simd", "", d)}"
>
> --
> 2.8.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V2] libjpeg-turbo: don't depend on NASM for non-x86 targets
  2017-04-03 17:03 ` Andre McCurdy
@ 2017-04-03 17:25   ` Burton, Ross
  2017-04-04  8:08     ` Patrick Ohly
  0 siblings, 1 reply; 4+ messages in thread
From: Burton, Ross @ 2017-04-03 17:25 UTC (permalink / raw)
  To: Andre McCurdy; +Cc: OE Core mailing list

[-- Attachment #1: Type: text/plain, Size: 185 bytes --]

On 3 April 2017 at 18:03, Andre McCurdy <armccurdy@gmail.com> wrote:

> > +EXTRA_OECONF_append_class-native = "--without-simd"
>
> Missing space?
>

Argh.  V3 incoming.

Ross

[-- Attachment #2: Type: text/html, Size: 596 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V2] libjpeg-turbo: don't depend on NASM for non-x86 targets
  2017-04-03 17:25   ` Burton, Ross
@ 2017-04-04  8:08     ` Patrick Ohly
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Ohly @ 2017-04-04  8:08 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE Core mailing list

On Mon, 2017-04-03 at 18:25 +0100, Burton, Ross wrote:
> 
> On 3 April 2017 at 18:03, Andre McCurdy <armccurdy@gmail.com> wrote:
>         > +EXTRA_OECONF_append_class-native = "--without-simd"
>         
>         
>         Missing space?
> 
> 
> Argh.  V3 incoming.

I'm so glad that this can happen even to the best of us and not just
me ;-}

-- 
Best Regards, Patrick Ohly

The content of this message is my personal opinion only and although
I am an employee of Intel, the statements I make here in no way
represent Intel's position on the issue, nor am I authorized to speak
on behalf of Intel on this matter.





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-04-04  8:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-03 12:04 [PATCH V2] libjpeg-turbo: don't depend on NASM for non-x86 targets Ross Burton
2017-04-03 17:03 ` Andre McCurdy
2017-04-03 17:25   ` Burton, Ross
2017-04-04  8:08     ` Patrick Ohly

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.