* [PATCH 0/1] eglibc: always compile with optimization.
@ 2012-11-12 3:31 jackie.huang
2012-11-12 3:31 ` [PATCH 1/1] " jackie.huang
0 siblings, 1 reply; 4+ messages in thread
From: jackie.huang @ 2012-11-12 3:31 UTC (permalink / raw)
To: openembedded-core; +Cc: Jackie.Huang, Zhenfeng.Zhao
From: Jackie Huang <jackie.huang@windriver.com>
The following changes since commit 5e4714a454f9f742bf8af70dad2aa66ccb87e3fd:
lib/oe/classextend: Ensure we don't extend expressions more than once (2012-11-06 09:29:03 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib jhuang0/d_eglibc_1112_1
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/d_eglibc_1112_1
Jackie Huang (1):
eglibc: always compile with optimization.
meta/recipes-core/eglibc/eglibc_2.16.bb | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
--
1.7.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] eglibc: always compile with optimization.
2012-11-12 3:31 [PATCH 0/1] eglibc: always compile with optimization jackie.huang
@ 2012-11-12 3:31 ` jackie.huang
2012-11-12 9:48 ` Phil Blundell
0 siblings, 1 reply; 4+ messages in thread
From: jackie.huang @ 2012-11-12 3:31 UTC (permalink / raw)
To: openembedded-core; +Cc: Jackie.Huang, Zhenfeng.Zhao
From: Jackie Huang <jackie.huang@windriver.com>
eglibc fails to compile if someone tries to compile an entire image as -O0:
error "glibc cannot be compiled without optimization"
so in this case, force to use -O2 and give a note about it.
[YOCTO #3405]
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
meta/recipes-core/eglibc/eglibc_2.16.bb | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-core/eglibc/eglibc_2.16.bb b/meta/recipes-core/eglibc/eglibc_2.16.bb
index aa9256c..0047c1c 100644
--- a/meta/recipes-core/eglibc/eglibc_2.16.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.16.bb
@@ -87,6 +87,17 @@ EXTRA_OECONF = "--enable-kernel=${OLDEST_KERNEL} \
EXTRA_OECONF += "${@get_libc_fpu_setting(bb, d)}"
+# eglibc can't be built without optimization, if someone tries to compile an
+# entire image as -O0, we override it with -O2 here and give a note about it.
+def get_optimization(d):
+ if base_contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
+ bb.note("eglibc can't be built with -O0, -O2 will be used instead.")
+ selected_optimization = d.getVar("SELECTED_OPTIMIZATION", True)
+ return selected_optimization.replace("-O0", "-O2")
+ return selected_optimization
+
+SELECTED_OPTIMIZATION := "${@get_optimization(d)}"
+
do_unpack_append() {
bb.build.exec_func('do_move_ports', d)
}
--
1.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] eglibc: always compile with optimization.
2012-11-12 3:31 ` [PATCH 1/1] " jackie.huang
@ 2012-11-12 9:48 ` Phil Blundell
2012-11-13 1:44 ` jhuang0
0 siblings, 1 reply; 4+ messages in thread
From: Phil Blundell @ 2012-11-12 9:48 UTC (permalink / raw)
To: jackie.huang; +Cc: Zhenfeng.Zhao, openembedded-core
On Mon, 2012-11-12 at 11:31 +0800, jackie.huang@windriver.com wrote:
> +# eglibc can't be built without optimization, if someone tries to compile an
> +# entire image as -O0, we override it with -O2 here and give a note about it.
> +def get_optimization(d):
> + if base_contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
> + bb.note("eglibc can't be built with -O0, -O2 will be used instead.")
> + selected_optimization = d.getVar("SELECTED_OPTIMIZATION", True)
> + return selected_optimization.replace("-O0", "-O2")
> + return selected_optimization
Did you test this patch at all?
p.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] eglibc: always compile with optimization.
2012-11-12 9:48 ` Phil Blundell
@ 2012-11-13 1:44 ` jhuang0
0 siblings, 0 replies; 4+ messages in thread
From: jhuang0 @ 2012-11-13 1:44 UTC (permalink / raw)
To: Phil Blundell; +Cc: Zhenfeng.Zhao, openembedded-core
On 11/12/2012 5:48 PM, Phil Blundell wrote:
> On Mon, 2012-11-12 at 11:31 +0800, jackie.huang@windriver.com wrote:
>> +# eglibc can't be built without optimization, if someone tries to compile an
>> +# entire image as -O0, we override it with -O2 here and give a note about it.
>> +def get_optimization(d):
>> + if base_contains("SELECTED_OPTIMIZATION", "-O0", "x", "", d) == "x":
>> + bb.note("eglibc can't be built with -O0, -O2 will be used instead.")
>> + selected_optimization = d.getVar("SELECTED_OPTIMIZATION", True)
>> + return selected_optimization.replace("-O0", "-O2")
>> + return selected_optimization
>
> Did you test this patch at all?
I did test only in the cases that caused the defect but now I realized
that it's not well tested and it doesn't work in other cases, sorry
about that, I will re-work on it.
Thanks,
Jackie
>
> p.
>
>
>
>
--
Jackie Huang
WIND RIVER | China Development Center
MSN:jackielily@hotmail.com
Tel: +86 8477 8594
Mobile: +86 138 1027 4745
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-11-13 1:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-12 3:31 [PATCH 0/1] eglibc: always compile with optimization jackie.huang
2012-11-12 3:31 ` [PATCH 1/1] " jackie.huang
2012-11-12 9:48 ` Phil Blundell
2012-11-13 1:44 ` jhuang0
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox