* [PATCH] minimal.conf: Prefer libtool 2.4 with sysroot support
@ 2010-12-09 3:23 Khem Raj
2010-12-09 8:12 ` Martin Jansa
0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2010-12-09 3:23 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
conf/distro/minimal.conf | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/conf/distro/minimal.conf b/conf/distro/minimal.conf
index 5b92a36..451d010 100644
--- a/conf/distro/minimal.conf
+++ b/conf/distro/minimal.conf
@@ -102,13 +102,20 @@ require conf/distro/include/preferred-xorg-versions-X11R7.5.inc
PREFERRED_PROVIDER_opkg ?= "opkg"
PREFERRED_PROVIDER_virtual/update-alternatives ?= "opkg"
-PREFERRED_QT_VERSION ?= "4.7.1"
+PREFERRED_QT_VERSION ?= "4.7.1"
+PREFERRED_LIBTOOL_VERSION ?= "2.4"
+LIBTOOL_HAS_SYSROOT ?= "yes"
PREFERRED_VERSION_qt4-tools-native = "${PREFERRED_QT_VERSION}"
PREFERRED_VERSION_qt4-tools-sdk = "${PREFERRED_QT_VERSION}"
PREFERRED_VERSION_qt4-embedded = "${PREFERRED_QT_VERSION}"
PREFERRED_VERSION_qt4-embedded-gles = "${PREFERRED_QT_VERSION}"
PREFERRED_VERSION_qt4-x11-free = "${PREFERRED_QT_VERSION}"
PREFERRED_VERSION_qt4-x11-free-gles = "${PREFERRED_QT_VERSION}"
+PREFERRED_VERSION_libtool = "${PREFERRED_LIBTOOL_VERSION}"
+PREFERRED_VERSION_libtool-cross = "${PREFERRED_LIBTOOL_VERSION}"
+PREFERRED_VERSION_libtool-native = "${PREFERRED_LIBTOOL_VERSION}"
+PREFERRED_VERSION_libtool-sdk = "${PREFERRED_LIBTOOL_VERSION}"
+PREFERRED_VERSION_libtool-nativesdk = "${PREFERRED_LIBTOOL_VERSION}"
#############################################################################
# CONTENTS
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] minimal.conf: Prefer libtool 2.4 with sysroot support
2010-12-09 3:23 [PATCH] minimal.conf: Prefer libtool 2.4 with sysroot support Khem Raj
@ 2010-12-09 8:12 ` Martin Jansa
2010-12-09 15:55 ` Khem Raj
0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2010-12-09 8:12 UTC (permalink / raw)
To: openembedded-devel
On Wed, Dec 08, 2010 at 07:23:17PM -0800, Khem Raj wrote:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> conf/distro/minimal.conf | 9 ++++++++-
> 1 files changed, 8 insertions(+), 1 deletions(-)
>
> diff --git a/conf/distro/minimal.conf b/conf/distro/minimal.conf
> index 5b92a36..451d010 100644
> --- a/conf/distro/minimal.conf
> +++ b/conf/distro/minimal.conf
> @@ -102,13 +102,20 @@ require conf/distro/include/preferred-xorg-versions-X11R7.5.inc
>
> PREFERRED_PROVIDER_opkg ?= "opkg"
> PREFERRED_PROVIDER_virtual/update-alternatives ?= "opkg"
> -PREFERRED_QT_VERSION ?= "4.7.1"
> +PREFERRED_QT_VERSION ?= "4.7.1"
> +PREFERRED_LIBTOOL_VERSION ?= "2.4"
> +LIBTOOL_HAS_SYSROOT ?= "yes"
what about setting this libtool version in sane-toolchain.inc? with more
distros using it we'll get better test coverage and state of recipes
built with it seems good enough to me (SHR is using it for a while).
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] minimal.conf: Prefer libtool 2.4 with sysroot support
2010-12-09 8:12 ` Martin Jansa
@ 2010-12-09 15:55 ` Khem Raj
0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2010-12-09 15:55 UTC (permalink / raw)
To: openembedded-devel
On Thu, Dec 9, 2010 at 12:12 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Wed, Dec 08, 2010 at 07:23:17PM -0800, Khem Raj wrote:
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> ---
>> conf/distro/minimal.conf | 9 ++++++++-
>> 1 files changed, 8 insertions(+), 1 deletions(-)
>>
>> diff --git a/conf/distro/minimal.conf b/conf/distro/minimal.conf
>> index 5b92a36..451d010 100644
>> --- a/conf/distro/minimal.conf
>> +++ b/conf/distro/minimal.conf
>> @@ -102,13 +102,20 @@ require conf/distro/include/preferred-xorg-versions-X11R7.5.inc
>>
>> PREFERRED_PROVIDER_opkg ?= "opkg"
>> PREFERRED_PROVIDER_virtual/update-alternatives ?= "opkg"
>> -PREFERRED_QT_VERSION ?= "4.7.1"
>> +PREFERRED_QT_VERSION ?= "4.7.1"
>> +PREFERRED_LIBTOOL_VERSION ?= "2.4"
>> +LIBTOOL_HAS_SYSROOT ?= "yes"
>
> what about setting this libtool version in sane-toolchain.inc?
Initially I thought of that but then kept the sope to minimal only.
But I am fine to put it
in sane-toolchain.inc if no one sees any issues with it
with more
> distros using it we'll get better test coverage and state of recipes
> built with it seems good enough to me (SHR is using it for a while).
>
> --
> Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-12-09 15:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-09 3:23 [PATCH] minimal.conf: Prefer libtool 2.4 with sysroot support Khem Raj
2010-12-09 8:12 ` Martin Jansa
2010-12-09 15:55 ` 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.