Re: [webkit-dev] GCC version consistency on EFL bots?

2013-10-07 Thread Gyuyoung Kim
Hello, We finished to upgrade EFL 32bit buildbot to Ubuntu 13.04. I will try that all EFL bots have same gcc version. Thanks, Gyuyoung. On Mon, Oct 7, 2013 at 12:33 PM, Gyuyoung Kim gyuyoung@webkit.orgwrote: Hello Karen, Thank you for good information. However, as Andreas said, it is

[webkit-dev] GCC version consistency on EFL bots?

2013-10-06 Thread Andreas Kling
Hi folks, I recently landed a patch that makes use of lowercased “override” and “final” in WebKit, and now the EFL build is failing. The EFL EWS bots didn’t have any problem with the patch however, which brings me to my question: Are the main/EWS bots running different versions of GCC? And if

Re: [webkit-dev] GCC version consistency on EFL bots?

2013-10-06 Thread Gyuyoung Kim
Hi Andreas, Are the main/EWS bots running different versions of GCC? No, EFL ews bots have same gcc version. EFL ews and buildbots are being ran on two machines. As far as I know, those are based on Ubuntu 13.04 and have same gcc 4.7.3. Thanks, Gyuyoung. On Mon, Oct 7, 2013 at 4:56 AM,

Re: [webkit-dev] GCC version consistency on EFL bots?

2013-10-06 Thread Andreas Kling
Hi Gyuyoung, Then why is final/override working on EWS but not on the main build bots? Are they using different compiler flags? According to wtf/Compiler.h, GCC should support override control since at least 4.7.0. Errors here:

Re: [webkit-dev] GCC version consistency on EFL bots?

2013-10-06 Thread Gyuyoung Kim
Hi Andreas, Ah, I only talked on EFL ews bots. Yes, we're running an ubuntu 32bit machine only for a 32bit buildbot. And, it is based on Ubuntu 12.04 and has gcc 4.6.3 version. I think the 32bit buildbot needs to be upgraded. I will do it. Thanks, Gyuyoung. On Mon, Oct 7, 2013 at 10:07 AM,

Re: [webkit-dev] GCC version consistency on EFL bots?

2013-10-06 Thread ryuan Choi
Hi gyuyoung and Andreas, If then, does it mean that webkit will drop support of gcc 4.6? Just for curiousity. Thanks. 2013. 10. 7. 오전 10:26에 Gyuyoung Kim gyuyoung@webkit.org님이 작성: Hi Andreas, Ah, I only talked on EFL ews bots. Yes, we're running an ubuntu 32bit machine only for a 32bit

Re: [webkit-dev] GCC version consistency on EFL bots?

2013-10-06 Thread Andreas Kling
We can keep using FINAL and OVERRIDE macros for a while longer. That should keep the GCC 4.6 build trucking along. It’s still important that we use the same compiler on EWS and real bots, since the whole point is to avoid situations like this :) On Oct 7, 2013, at 3:19 AM, ryuan Choi

Re: [webkit-dev] GCC version consistency on EFL bots?

2013-10-06 Thread Gyuyoung Kim
Hello Karen, Thank you for good information. However, as Andreas said, it is important to have the same compiler version both on EWS and bots. So, I feel I need that the problem bot has the same gcc version as soon as possible. Because I don't want to do something against WebKit(or common)