* [PATCH 0/1] Misc Fixes
@ 2012-04-16 22:13 nitin.a.kamble
2012-04-16 22:14 ` [PATCH 1/1] poky-tiny: fix eglibc configuration nitin.a.kamble
0 siblings, 1 reply; 6+ messages in thread
From: nitin.a.kamble @ 2012-04-16 22:13 UTC (permalink / raw)
To: yocto
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit a5afc58319d3c7e082a090f5fad7f89bd6e588c9:
connman-gnome: fix segfault on connect (2012-04-16 22:53:00 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/bugfixes
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/bugfixes
Nitin A Kamble (1):
poky-tiny: fix eglibc configuration
meta-yocto/conf/distro/poky-tiny.conf | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
--
1.7.7
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/1] poky-tiny: fix eglibc configuration
2012-04-16 22:13 [PATCH 0/1] Misc Fixes nitin.a.kamble
@ 2012-04-16 22:14 ` nitin.a.kamble
2012-04-16 22:36 ` Mark Hatle
2012-04-16 22:42 ` Darren Hart
0 siblings, 2 replies; 6+ messages in thread
From: nitin.a.kamble @ 2012-04-16 22:14 UTC (permalink / raw)
To: yocto
From: Nitin A Kamble <nitin.a.kamble@intel.com>
eglibc needs libc-posix-regexp-glibc & libc-libm-big enabled in it's
configuration to avoid following eglibc build issue.
...
| In file included from xregex.c:634:0:
| xregex.c: In function 'byte_regex_compile':
| xregex.c:3395:8: error: too few arguments to function 'findidx'
| ../locale/weight.h:23:1: note: declared here
...
This fixes bug [YOCTO #2295]
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
meta-yocto/conf/distro/poky-tiny.conf | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
index 58d64ec..626b2d0 100644
--- a/meta-yocto/conf/distro/poky-tiny.conf
+++ b/meta-yocto/conf/distro/poky-tiny.conf
@@ -62,7 +62,7 @@ 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"
+DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-libm-big libc-crypt"
# for gettext
DISTRO_FEATURES_LIBC_TINY += "libc-posix-clang-wchar"
# for m4
@@ -71,7 +71,7 @@ DISTRO_FEATURES_LIBC_TINY += "libc-spawn libc-locale-code"
DISTRO_FEATURES_LIBC_TINY += "libc-ftraverse"
# Required for "who"
DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin"
-DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp"
+DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp libc-posix-regexp-glibc"
DISTRO_FEATURES_LIBC_NET = "libc-inet libc-nis"
DISTRO_FEATURES_LIBC = "${DISTRO_FEATURES_LIBC_TINY} \
--
1.7.7
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH 1/1] poky-tiny: fix eglibc configuration
2012-04-16 22:14 ` [PATCH 1/1] poky-tiny: fix eglibc configuration nitin.a.kamble
@ 2012-04-16 22:36 ` Mark Hatle
2012-04-16 22:42 ` Darren Hart
1 sibling, 0 replies; 6+ messages in thread
From: Mark Hatle @ 2012-04-16 22:36 UTC (permalink / raw)
To: yocto
On 4/16/12 5:14 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> eglibc needs libc-posix-regexp-glibc& libc-libm-big enabled in it's
> configuration to avoid following eglibc build issue.
>
> ...
> | In file included from xregex.c:634:0:
> | xregex.c: In function 'byte_regex_compile':
> | xregex.c:3395:8: error: too few arguments to function 'findidx'
> | ../locale/weight.h:23:1: note: declared here
> ...
If glibc is failing to build because of the above, you need to report the
failure to the eglibc mailing list.
eglibc is expected to build with those items disabled.
If it's another package, then it would be nice to know which item it is, as
there may be a workaround.. (coreutils for instance has the ability to provide
an internal regex function...)
--Mark
> This fixes bug [YOCTO #2295]
>
> Signed-off-by: Nitin A Kamble<nitin.a.kamble@intel.com>
> ---
> meta-yocto/conf/distro/poky-tiny.conf | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
> index 58d64ec..626b2d0 100644
> --- a/meta-yocto/conf/distro/poky-tiny.conf
> +++ b/meta-yocto/conf/distro/poky-tiny.conf
> @@ -62,7 +62,7 @@ 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"
> +DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-libm-big libc-crypt"
> # for gettext
> DISTRO_FEATURES_LIBC_TINY += "libc-posix-clang-wchar"
> # for m4
> @@ -71,7 +71,7 @@ DISTRO_FEATURES_LIBC_TINY += "libc-spawn libc-locale-code"
> DISTRO_FEATURES_LIBC_TINY += "libc-ftraverse"
> # Required for "who"
> DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin"
> -DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp"
> +DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp libc-posix-regexp-glibc"
> DISTRO_FEATURES_LIBC_NET = "libc-inet libc-nis"
>
> DISTRO_FEATURES_LIBC = "${DISTRO_FEATURES_LIBC_TINY} \
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 1/1] poky-tiny: fix eglibc configuration
2012-04-16 22:14 ` [PATCH 1/1] poky-tiny: fix eglibc configuration nitin.a.kamble
2012-04-16 22:36 ` Mark Hatle
@ 2012-04-16 22:42 ` Darren Hart
1 sibling, 0 replies; 6+ messages in thread
From: Darren Hart @ 2012-04-16 22:42 UTC (permalink / raw)
To: nitin.a.kamble; +Cc: yocto
On 04/16/2012 03:23 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
>
> eglibc needs libc-posix-regexp-glibc & libc-libm-big enabled in it's
> configuration to avoid following eglibc build issue.
>
> ...
> | In file included from xregex.c:634:0:
> | xregex.c: In function 'byte_regex_compile':
> | xregex.c:3395:8: error: too few arguments to function 'findidx'
> | ../locale/weight.h:23:1: note: declared here
> ...
>
> This fixes bug [YOCTO #2295]
>
> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> ---
> meta-yocto/conf/distro/poky-tiny.conf | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-yocto/conf/distro/poky-tiny.conf b/meta-yocto/conf/distro/poky-tiny.conf
> index 58d64ec..626b2d0 100644
> --- a/meta-yocto/conf/distro/poky-tiny.conf
> +++ b/meta-yocto/conf/distro/poky-tiny.conf
> @@ -62,7 +62,7 @@ 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"
> +DISTRO_FEATURES_LIBC_TINY = "libc-libm libc-libm-big libc-crypt"
> # for gettext
> DISTRO_FEATURES_LIBC_TINY += "libc-posix-clang-wchar"
> # for m4
> @@ -71,7 +71,7 @@ DISTRO_FEATURES_LIBC_TINY += "libc-spawn libc-locale-code"
> DISTRO_FEATURES_LIBC_TINY += "libc-ftraverse"
> # Required for "who"
> DISTRO_FEATURES_LIBC_MINIMAL = "libc-utmp libc-getlogin"
> -DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp"
> +DISTRO_FEATURES_LIBC_REGEX = "libc-posix-regexp libc-posix-regexp-glibc"
> DISTRO_FEATURES_LIBC_NET = "libc-inet libc-nis"
>
> DISTRO_FEATURES_LIBC = "${DISTRO_FEATURES_LIBC_TINY} \
I have a patch that makes it clear which features are added for the
toolchain. This will make it easier to reduce in the future as well.
I'll test with the libm-big added to that and report on size increase
and send that patch for inclusion.
Nitin, thank you for identifying the missing lib. I would prefer we not
merge this patch as is. It will only collide with my cleanup patch. I
might as well integrate it into the cleanup patch and send it out as
one. Will have it tested and sent out as soon as I can get a few builds
to complete.
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/1] Misc Fixes
@ 2012-04-20 16:14 nitin.a.kamble
0 siblings, 0 replies; 6+ messages in thread
From: nitin.a.kamble @ 2012-04-20 16:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit 1a03b7dfba464fde770ba69b618427d13e0a3b8b:
documentation/bsp-guide/bsp.xml: spelling corrected. (2012-04-18 16:41:15 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/bugfixes
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/bugfixes
Nitin A Kamble (1):
libproxy: fix compilation with gcc 4.7
.../libproxy/libproxy_fix_for_gcc4.7.patch | 30 ++++++++++++++++++++
meta/recipes-support/libproxy/libproxy_0.4.7.bb | 3 +-
2 files changed, 32 insertions(+), 1 deletions(-)
create mode 100644 meta/recipes-support/libproxy/libproxy/libproxy_fix_for_gcc4.7.patch
--
1.7.7
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 0/1] Misc fixes
@ 2012-05-17 23:07 nitin.a.kamble
0 siblings, 0 replies; 6+ messages in thread
From: nitin.a.kamble @ 2012-05-17 23:07 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit b7c1ac86909b1479434048c3e1d013d6efd9eac8:
Revert "kmod: Use base_libdir for installing libkmod" (2012-05-17 21:13:11 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/work
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/work
Nitin A Kamble (1):
eglibc: package mtrace separately
meta/recipes-core/eglibc/eglibc-package.inc | 7 ++++++-
meta/recipes-core/eglibc/eglibc_2.13.bb | 2 +-
meta/recipes-core/eglibc/eglibc_2.15.bb | 2 +-
meta/recipes-core/tasks/task-core-tools-debug.bb | 1 +
meta/recipes-core/uclibc/uclibc.inc | 2 +-
5 files changed, 10 insertions(+), 4 deletions(-)
--
1.7.7
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-05-17 23:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-16 22:13 [PATCH 0/1] Misc Fixes nitin.a.kamble
2012-04-16 22:14 ` [PATCH 1/1] poky-tiny: fix eglibc configuration nitin.a.kamble
2012-04-16 22:36 ` Mark Hatle
2012-04-16 22:42 ` Darren Hart
-- strict thread matches above, loose matches on Subject: below --
2012-04-20 16:14 [PATCH 0/1] Misc Fixes nitin.a.kamble
2012-05-17 23:07 [PATCH 0/1] Misc fixes nitin.a.kamble
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.