All of lore.kernel.org
 help / color / mirror / Atom feed
* [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG
@ 2020-04-26 19:13 Jeremy Puhlman
  2020-04-26 19:13 ` [dunfell][PATCH 2/3] nativesdk-gcc-runtime: enable building libstdc++.a Jeremy Puhlman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jeremy Puhlman @ 2020-04-26 19:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jeremy Puhlman, Richard Purdie

From: Jeremy Puhlman <jpuhlman@mvista.com>

(From OE-Core rev: f2bcc384a6e90480b5b0f0c77530f014785b291e)

Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/recipes-devtools/qemu/qemu.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc
index f17a046fca..7a1ccf2115 100644
--- a/meta/recipes-devtools/qemu/qemu.inc
+++ b/meta/recipes-devtools/qemu/qemu.inc
@@ -180,7 +180,7 @@ PACKAGECONFIG[snappy] = "--enable-snappy,--disable-snappy,snappy"
 PACKAGECONFIG[glusterfs] = "--enable-glusterfs,--disable-glusterfs"
 PACKAGECONFIG[xkbcommon] = "--enable-xkbcommon,--disable-xkbcommon,libxkbcommon"
 PACKAGECONFIG[libudev] = "--enable-libudev,--disable-libudev,eudev"
-#PACKAGECONFIG[libxml2] = "--enable-libxml2,--disable-libxml2,libxml2"
+PACKAGECONFIG[libxml2] = "--enable-libxml2,--disable-libxml2,libxml2"
 
 INSANE_SKIP_${PN} = "arch"
 
-- 
2.20.1


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

* [dunfell][PATCH 2/3] nativesdk-gcc-runtime: enable building libstdc++.a
  2020-04-26 19:13 [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG Jeremy Puhlman
@ 2020-04-26 19:13 ` Jeremy Puhlman
  2020-04-26 19:13 ` [dunfell][PATCH 3/3] buildtools-extended-tarball: Add libstc++.a Jeremy Puhlman
  2020-04-27 21:28 ` [OE-core] [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG Steve Sakoman
  2 siblings, 0 replies; 4+ messages in thread
From: Jeremy Puhlman @ 2020-04-26 19:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jeremy Puhlman, Richard Purdie

From: Jeremy Puhlman <jpuhlman@mvista.com>

(From OE-Core rev: ef5cff3db22e911b7a6ecf3dac212903757b4df1)

Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/recipes-devtools/gcc/gcc-runtime.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc
index 771f344ac0..ace706dbf4 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime.inc
+++ b/meta/recipes-devtools/gcc/gcc-runtime.inc
@@ -22,6 +22,8 @@ EXTRA_OECONF_append_libc-newlib = " --with-newlib"
 EXTRA_OECONF_append_arm = " libat_cv_have_ifunc=no "
 EXTRA_OECONF_append_armeb = " libat_cv_have_ifunc=no "
 
+DISABLE_STATIC_class-nativesdk ?= ""
+
 # Newlib does not support symbol versioning on libsdtcc++
 SYMVERS_CONF_libc-newlib = ""
 
-- 
2.20.1


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

* [dunfell][PATCH 3/3] buildtools-extended-tarball: Add libstc++.a
  2020-04-26 19:13 [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG Jeremy Puhlman
  2020-04-26 19:13 ` [dunfell][PATCH 2/3] nativesdk-gcc-runtime: enable building libstdc++.a Jeremy Puhlman
@ 2020-04-26 19:13 ` Jeremy Puhlman
  2020-04-27 21:28 ` [OE-core] [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG Steve Sakoman
  2 siblings, 0 replies; 4+ messages in thread
From: Jeremy Puhlman @ 2020-04-26 19:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jeremy Puhlman, Richard Purdie

From: Jeremy Puhlman <jpuhlman@mvista.com>

Builds like native-openjdk, really wants a to link
some tools against the static version. Since when
using the extended tarball, its the only place to
get it, add the library.

(From OE-Core rev: 59c4a3fdbbfd5a6aaba7e0a1675dcd5866a7f3a4)

Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/recipes-core/meta/buildtools-extended-tarball.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/meta/buildtools-extended-tarball.bb b/meta/recipes-core/meta/buildtools-extended-tarball.bb
index dd780c5d57..e38967af3f 100644
--- a/meta/recipes-core/meta/buildtools-extended-tarball.bb
+++ b/meta/recipes-core/meta/buildtools-extended-tarball.bb
@@ -23,6 +23,7 @@ TOOLCHAIN_HOST_TASK += "\
     nativesdk-libgcc \
     nativesdk-libstdc++ \
     nativesdk-libstdc++-dev \
+    nativesdk-libstdc++-staticdev \
     nativesdk-libtool \
     nativesdk-pkgconfig \
     nativesdk-glibc-utils \
-- 
2.20.1


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

* Re: [OE-core] [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG
  2020-04-26 19:13 [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG Jeremy Puhlman
  2020-04-26 19:13 ` [dunfell][PATCH 2/3] nativesdk-gcc-runtime: enable building libstdc++.a Jeremy Puhlman
  2020-04-26 19:13 ` [dunfell][PATCH 3/3] buildtools-extended-tarball: Add libstc++.a Jeremy Puhlman
@ 2020-04-27 21:28 ` Steve Sakoman
  2 siblings, 0 replies; 4+ messages in thread
From: Steve Sakoman @ 2020-04-27 21:28 UTC (permalink / raw)
  To: Jeremy Puhlman
  Cc: Patches and discussions about the oe-core layer, Richard Purdie

Thanks Jeremy!  I have this series queued up for dunfell-next.

Steve

On Sun, Apr 26, 2020 at 9:13 AM Jeremy Puhlman <jpuhlman@mvista.com> wrote:
>
> From: Jeremy Puhlman <jpuhlman@mvista.com>
>
> (From OE-Core rev: f2bcc384a6e90480b5b0f0c77530f014785b291e)
>
> Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
>  meta/recipes-devtools/qemu/qemu.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc
> index f17a046fca..7a1ccf2115 100644
> --- a/meta/recipes-devtools/qemu/qemu.inc
> +++ b/meta/recipes-devtools/qemu/qemu.inc
> @@ -180,7 +180,7 @@ PACKAGECONFIG[snappy] = "--enable-snappy,--disable-snappy,snappy"
>  PACKAGECONFIG[glusterfs] = "--enable-glusterfs,--disable-glusterfs"
>  PACKAGECONFIG[xkbcommon] = "--enable-xkbcommon,--disable-xkbcommon,libxkbcommon"
>  PACKAGECONFIG[libudev] = "--enable-libudev,--disable-libudev,eudev"
> -#PACKAGECONFIG[libxml2] = "--enable-libxml2,--disable-libxml2,libxml2"
> +PACKAGECONFIG[libxml2] = "--enable-libxml2,--disable-libxml2,libxml2"
>
>  INSANE_SKIP_${PN} = "arch"
>
> --
> 2.20.1
>
> 

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

end of thread, other threads:[~2020-04-27 21:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-26 19:13 [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG Jeremy Puhlman
2020-04-26 19:13 ` [dunfell][PATCH 2/3] nativesdk-gcc-runtime: enable building libstdc++.a Jeremy Puhlman
2020-04-26 19:13 ` [dunfell][PATCH 3/3] buildtools-extended-tarball: Add libstc++.a Jeremy Puhlman
2020-04-27 21:28 ` [OE-core] [dunfell][PATCH 1/3] qemu-system-native: Fix commented out PACKAGECONFIG Steve Sakoman

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.