All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] poky-tiny: Assume pkgconfig is provided
@ 2012-02-25 16:29 Darren Hart
  2012-02-25 16:31 ` Darren Hart
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Darren Hart @ 2012-02-25 16:29 UTC (permalink / raw)
  To: Yocto Project; +Cc: Darren Hart

-dev packages require pkgconfig, but it pulls in glib->dbus->shadow
which breaks with tiny's minimal libc.

-dev packages are not currently supported on poky-tiny.

Proposed-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
---
 meta-yocto/conf/distro/poky-tiny.conf |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index 411347a..6fa4c90 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -55,6 +55,11 @@ ENABLE_WIDEC="false"
 # eglibc->bash->gettext->libc-posix-clang-wchar dependency.
 USE_NLS="no"
 
+# -dev packages require pkgconfig, but it pulls in glib->dbus->shadow
+# which breaks with tiny's minimal libc.
+# -dev packages are not currently supported on poky-tiny.
+ASSUME_PROVIDED += "pkgconfig$"
+
 # Reconfigure eglibc for a smaller installation
 # Comment out any of the lines below to disable them in the build
 DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"
-- 
1.7.6.5



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

* Re: [PATCH] poky-tiny: Assume pkgconfig is provided
  2012-02-25 16:29 [PATCH] poky-tiny: Assume pkgconfig is provided Darren Hart
@ 2012-02-25 16:31 ` Darren Hart
  2012-02-26 10:57 ` Richard Purdie
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Darren Hart @ 2012-02-25 16:31 UTC (permalink / raw)
  To: Yocto Project

Bah, forgot the bug tag:

Fixes [YOCTO #2030]

On 02/25/2012 08:29 AM, Darren Hart wrote:
> -dev packages require pkgconfig, but it pulls in glib->dbus->shadow
> which breaks with tiny's minimal libc.
> 
> -dev packages are not currently supported on poky-tiny.
> 
> Proposed-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> ---
>  meta-yocto/conf/distro/poky-tiny.conf |    5 +++++
>  1 files changed, 5 insertions(+), 0 deletions(-)
> 
> diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
> index 411347a..6fa4c90 100644
> --- a/meta-yocto/conf/distro/poky-tiny.conf
> +++ b/meta-yocto/conf/distro/poky-tiny.conf
> @@ -55,6 +55,11 @@ ENABLE_WIDEC="false"
>  # eglibc->bash->gettext->libc-posix-clang-wchar dependency.
>  USE_NLS="no"
>  
> +# -dev packages require pkgconfig, but it pulls in glib->dbus->shadow
> +# which breaks with tiny's minimal libc.
> +# -dev packages are not currently supported on poky-tiny.
> +ASSUME_PROVIDED += "pkgconfig$"
> +
>  # Reconfigure eglibc for a smaller installation
>  # Comment out any of the lines below to disable them in the build
>  DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

* Re: [PATCH] poky-tiny: Assume pkgconfig is provided
  2012-02-25 16:29 [PATCH] poky-tiny: Assume pkgconfig is provided Darren Hart
  2012-02-25 16:31 ` Darren Hart
@ 2012-02-26 10:57 ` Richard Purdie
  2012-03-01  9:22 ` Khem Raj
  2012-03-01  9:26 ` Khem Raj
  3 siblings, 0 replies; 5+ messages in thread
From: Richard Purdie @ 2012-02-26 10:57 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

On Sat, 2012-02-25 at 08:29 -0800, Darren Hart wrote:
> -dev packages require pkgconfig, but it pulls in glib->dbus->shadow
> which breaks with tiny's minimal libc.
> 
> -dev packages are not currently supported on poky-tiny.
> 
> Proposed-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> ---
>  meta-yocto/conf/distro/poky-tiny.conf |    5 +++++
>  1 files changed, 5 insertions(+), 0 deletions(-)

Merged to master, thanks.

Richard



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

* Re: [PATCH] poky-tiny: Assume pkgconfig is provided
  2012-02-25 16:29 [PATCH] poky-tiny: Assume pkgconfig is provided Darren Hart
  2012-02-25 16:31 ` Darren Hart
  2012-02-26 10:57 ` Richard Purdie
@ 2012-03-01  9:22 ` Khem Raj
  2012-03-01  9:26 ` Khem Raj
  3 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2012-03-01  9:22 UTC (permalink / raw)
  To: yocto

On 02/25/2012 08:29 AM, Darren Hart wrote:
> +# -dev packages require pkgconfig, but it pulls in glib->dbus->shadow
> +# which breaks with tiny's minimal libc.
> +# -dev packages are not currently supported on poky-tiny.
> +ASSUME_PROVIDED += "pkgconfig$"
> +
what does $ at end signify ?


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

* Re: [PATCH] poky-tiny: Assume pkgconfig is provided
  2012-02-25 16:29 [PATCH] poky-tiny: Assume pkgconfig is provided Darren Hart
                   ` (2 preceding siblings ...)
  2012-03-01  9:22 ` Khem Raj
@ 2012-03-01  9:26 ` Khem Raj
  3 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2012-03-01  9:26 UTC (permalink / raw)
  To: yocto

On 02/25/2012 08:29 AM, Darren Hart wrote:
> -dev packages require pkgconfig, but it pulls in glib->dbus->shadow
> which breaks with tiny's minimal libc.
> 
> -dev packages are not currently supported on poky-tiny.
> 
> Proposed-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
> ---
>  meta-yocto/conf/distro/poky-tiny.conf |    5 +++++
>  1 files changed, 5 insertions(+), 0 deletions(-)
> 
> diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
> index 411347a..6fa4c90 100644
> --- a/meta-yocto/conf/distro/poky-tiny.conf
> +++ b/meta-yocto/conf/distro/poky-tiny.conf
> @@ -55,6 +55,11 @@ ENABLE_WIDEC="false"
>  # eglibc->bash->gettext->libc-posix-clang-wchar dependency.
>  USE_NLS="no"
>  
> +# -dev packages require pkgconfig, but it pulls in glib->dbus->shadow
> +# which breaks with tiny's minimal libc.
> +# -dev packages are not currently supported on poky-tiny.
> +ASSUME_PROVIDED += "pkgconfig$"
> +

I see you only want to assume pkgconfig but not pkconfig-native

>  # Reconfigure eglibc for a smaller installation
>  # Comment out any of the lines below to disable them in the build
>  DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-crypt"



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

end of thread, other threads:[~2012-03-01  9:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-25 16:29 [PATCH] poky-tiny: Assume pkgconfig is provided Darren Hart
2012-02-25 16:31 ` Darren Hart
2012-02-26 10:57 ` Richard Purdie
2012-03-01  9:22 ` Khem Raj
2012-03-01  9:26 ` Khem Raj

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.