* [PATCH] gcc-configure-common.inc: Disable multilib generation.
@ 2010-07-14 17:56 Khem Raj
2010-07-14 18:31 ` Roman I Khimov
2010-07-14 18:35 ` Paul Menzel
0 siblings, 2 replies; 5+ messages in thread
From: Khem Raj @ 2010-07-14 17:56 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
recipes/gcc/gcc-4.5.inc | 3 +++
recipes/gcc/gcc-configure-common.inc | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/recipes/gcc/gcc-4.5.inc b/recipes/gcc/gcc-4.5.inc
index 19ab47b..c9b61a6 100644
--- a/recipes/gcc/gcc-4.5.inc
+++ b/recipes/gcc/gcc-4.5.inc
@@ -54,3 +54,6 @@ EXTRA_OECONF_INTERMEDIATE = "--disable-libmudflap --disable-libgomp --disable-li
EXTRA_OECONF_append_linux-uclibc = " --disable-decimal-float "
EXTRA_OECONF_append_linux-uclibceabi = " --disable-decimal-float "
EXTRA_OECONF_append_linux-uclibcspe = " --disable-decimal-float "
+
+EXTRA_OECONF_append_sh4 = " -with-cpu=sh4a --with-endian=little --with-multilib-list=none "
+TARGET_CC_ARCH_sh4 = ""
diff --git a/recipes/gcc/gcc-configure-common.inc b/recipes/gcc/gcc-configure-common.inc
index 892d684..bad70a4 100644
--- a/recipes/gcc/gcc-configure-common.inc
+++ b/recipes/gcc/gcc-configure-common.inc
@@ -36,7 +36,7 @@ EXTRA_OECONF = "${@['--enable-clocale=generic', ''][bb.data.getVar('USE_NLS', d,
--enable-shared \
--enable-languages=${LANGUAGES} \
--enable-threads=posix \
- --enable-multilib \
+ --disable-multilib \
--enable-c99 \
--enable-long-long \
--enable-symvers=gnu \
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] gcc-configure-common.inc: Disable multilib generation.
2010-07-14 17:56 [PATCH] gcc-configure-common.inc: Disable multilib generation Khem Raj
@ 2010-07-14 18:31 ` Roman I Khimov
2010-07-14 18:40 ` Tom Rini
2010-07-14 18:35 ` Paul Menzel
1 sibling, 1 reply; 5+ messages in thread
From: Roman I Khimov @ 2010-07-14 18:31 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: Text/Plain, Size: 465 bytes --]
В сообщении от Среда 14 июля 2010 21:56:02 автор Khem Raj написал:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> recipes/gcc/gcc-4.5.inc | 3 +++
> recipes/gcc/gcc-configure-common.inc | 2 +-
> 2 files changed, 4 insertions(+), 1 deletions(-)
Acked-by: Roman I Khimov <khimov@altell.ru>
--
http://roman.khimov.ru
mailto: roman@khimov.ru
gpg --keyserver hkp://subkeys.pgp.net --recv-keys 0xE5E055C3
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gcc-configure-common.inc: Disable multilib generation.
2010-07-14 17:56 [PATCH] gcc-configure-common.inc: Disable multilib generation Khem Raj
2010-07-14 18:31 ` Roman I Khimov
@ 2010-07-14 18:35 ` Paul Menzel
2010-07-14 18:39 ` Tom Rini
1 sibling, 1 reply; 5+ messages in thread
From: Paul Menzel @ 2010-07-14 18:35 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1613 bytes --]
Am Mittwoch, den 14.07.2010, 10:56 -0700 schrieb Khem Raj:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> recipes/gcc/gcc-4.5.inc | 3 +++
> recipes/gcc/gcc-configure-common.inc | 2 +-
> 2 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/recipes/gcc/gcc-4.5.inc b/recipes/gcc/gcc-4.5.inc
> index 19ab47b..c9b61a6 100644
> --- a/recipes/gcc/gcc-4.5.inc
> +++ b/recipes/gcc/gcc-4.5.inc
> @@ -54,3 +54,6 @@ EXTRA_OECONF_INTERMEDIATE = "--disable-libmudflap --disable-libgomp --disable-li
> EXTRA_OECONF_append_linux-uclibc = " --disable-decimal-float "
> EXTRA_OECONF_append_linux-uclibceabi = " --disable-decimal-float "
> EXTRA_OECONF_append_linux-uclibcspe = " --disable-decimal-float "
> +
> +EXTRA_OECONF_append_sh4 = " -with-cpu=sh4a --with-endian=little --with-multilib-list=none "
> +TARGET_CC_ARCH_sh4 = ""
> diff --git a/recipes/gcc/gcc-configure-common.inc b/recipes/gcc/gcc-configure-common.inc
> index 892d684..bad70a4 100644
> --- a/recipes/gcc/gcc-configure-common.inc
> +++ b/recipes/gcc/gcc-configure-common.inc
> @@ -36,7 +36,7 @@ EXTRA_OECONF = "${@['--enable-clocale=generic', ''][bb.data.getVar('USE_NLS', d,
> --enable-shared \
> --enable-languages=${LANGUAGES} \
> --enable-threads=posix \
> - --enable-multilib \
> + --disable-multilib \
> --enable-c99 \
> --enable-long-long \
> --enable-symvers=gnu \
Sorry. I do not know much about it. But what problem does this fix?
Thanks,
Paul
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gcc-configure-common.inc: Disable multilib generation.
2010-07-14 18:35 ` Paul Menzel
@ 2010-07-14 18:39 ` Tom Rini
0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2010-07-14 18:39 UTC (permalink / raw)
To: openembedded-devel
Paul Menzel wrote:
> Am Mittwoch, den 14.07.2010, 10:56 -0700 schrieb Khem Raj:
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> ---
>> recipes/gcc/gcc-4.5.inc | 3 +++
>> recipes/gcc/gcc-configure-common.inc | 2 +-
>> 2 files changed, 4 insertions(+), 1 deletions(-)
>>
>> diff --git a/recipes/gcc/gcc-4.5.inc b/recipes/gcc/gcc-4.5.inc
>> index 19ab47b..c9b61a6 100644
>> --- a/recipes/gcc/gcc-4.5.inc
>> +++ b/recipes/gcc/gcc-4.5.inc
>> @@ -54,3 +54,6 @@ EXTRA_OECONF_INTERMEDIATE = "--disable-libmudflap --disable-libgomp --disable-li
>> EXTRA_OECONF_append_linux-uclibc = " --disable-decimal-float "
>> EXTRA_OECONF_append_linux-uclibceabi = " --disable-decimal-float "
>> EXTRA_OECONF_append_linux-uclibcspe = " --disable-decimal-float "
>> +
>> +EXTRA_OECONF_append_sh4 = " -with-cpu=sh4a --with-endian=little --with-multilib-list=none "
>> +TARGET_CC_ARCH_sh4 = ""
>> diff --git a/recipes/gcc/gcc-configure-common.inc b/recipes/gcc/gcc-configure-common.inc
>> index 892d684..bad70a4 100644
>> --- a/recipes/gcc/gcc-configure-common.inc
>> +++ b/recipes/gcc/gcc-configure-common.inc
>> @@ -36,7 +36,7 @@ EXTRA_OECONF = "${@['--enable-clocale=generic', ''][bb.data.getVar('USE_NLS', d,
>> --enable-shared \
>> --enable-languages=${LANGUAGES} \
>> --enable-threads=posix \
>> - --enable-multilib \
>> + --disable-multilib \
>> --enable-c99 \
>> --enable-long-long \
>> --enable-symvers=gnu \
>
> Sorry. I do not know much about it. But what problem does this fix?
multilib doesn't currently work (there are patches for that) and in some
cases (some of which are out of tree) it also breaks compilation of gcc.
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] gcc-configure-common.inc: Disable multilib generation.
2010-07-14 18:31 ` Roman I Khimov
@ 2010-07-14 18:40 ` Tom Rini
0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2010-07-14 18:40 UTC (permalink / raw)
To: openembedded-devel
Roman I Khimov wrote:
> В сообщении от Среда 14 июля 2010 21:56:02 автор Khem Raj написал:
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> ---
>> recipes/gcc/gcc-4.5.inc | 3 +++
>> recipes/gcc/gcc-configure-common.inc | 2 +-
>> 2 files changed, 4 insertions(+), 1 deletions(-)
>
> Acked-by: Roman I Khimov <khimov@altell.ru>
Acked-by: Tom Rini <tom_rini@mentor.com>
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-07-14 18:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-14 17:56 [PATCH] gcc-configure-common.inc: Disable multilib generation Khem Raj
2010-07-14 18:31 ` Roman I Khimov
2010-07-14 18:40 ` Tom Rini
2010-07-14 18:35 ` Paul Menzel
2010-07-14 18:39 ` Tom Rini
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.