Re: [OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-05 Thread Richard Purdie
On Wed, 2011-10-05 at 02:05 +0200, Andreas Müller wrote:
 On Tuesday, October 04, 2011 02:40:49 PM Richard Purdie wrote:
  On Mon, 2011-10-03 at 20:45 +0200, Andreas Müller wrote:
   On Monday, October 03, 2011 05:29:52 PM Gary Thomas wrote:
 NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: Failed
 ERROR: Task 7 
 (/home/Superandy/data/oe-core/sources/openembedded-core/meta/recipes-sato/webkit/webkit-gtk_svn.bb,
  do_compile) failed with exit code '1'

 ideas what causes this?

 no idea, but I get the same error


It builds in Yocto/Poky so you might compare with those recipes.
   Dit you pull [1] and rebuild webkit-gtk?


   some investigation later: by diff'ing log files created by working 
   environment with the current environment I fell over log.do_configure: 
   
   --disable-dependency-tracking 
   
   was added in [1]. Tried manual bisecting by
   
   git reset --hard 288343e30604b944dc18fd82172febd314d9c520
   
   é voilà: webkit-gtk builds again. Will send a patch with 
   --enable-dependency-tracking after testing...
   
   Andreas
  
  
  I'm planning to add this commit:
  
  http://cgit.openembedded.org/cgit.cgi/openembedded-core/commit/?h=master-nextid=d53a0282be132a4ced507c0277925ae4a0f2f40d
  
  which means you should just be able to set:
  
  CONFIGUREOPT_DEPTRACK = 
  
  for this recipe rather than having multiple configure options and hoping
  the right one wins.
 I thought recipe's EXTRA_OECONF is by design ensured being appended and 
 thereby overwriting options of same target.
  
  I'd also note this means there is a bug somewhere in the webkit
  makefiles...
 Agreed - somebody with time  skills willing to take care?

I'm not sure I have the time or the right skillset for that one but at
least we've highighted there is a problem there...

 If there are no objections I'll send a patch with
 
 CONFIGUREOPT_DEPTRACK = 
 
 for webkit-gtk as soon as d53a0282be132a4ced507c0277925ae4a0f2f40d becomes 
 part of master branch

I've gone ahead and added this since I think we're all agreed on what is
needed here :)

Cheers,

Richard


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-05 Thread Andreas Müller
On Wednesday, October 05, 2011 03:37:40 PM Richard Purdie wrote:
 On Wed, 2011-10-05 at 02:05 +0200, Andreas Müller wrote:
  On Tuesday, October 04, 2011 02:40:49 PM Richard Purdie wrote:
   On Mon, 2011-10-03 at 20:45 +0200, Andreas Müller wrote:
On Monday, October 03, 2011 05:29:52 PM Gary Thomas wrote:
  NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: 
  Failed
  ERROR: Task 7 
  (/home/Superandy/data/oe-core/sources/openembedded-core/meta/recipes-sato/webkit/webkit-gtk_svn.bb,
   do_compile) failed with exit code '1'
 
  ideas what causes this?
 
  no idea, but I get the same error
 
 
 It builds in Yocto/Poky so you might compare with those recipes.
Dit you pull [1] and rebuild webkit-gtk?
 
 
some investigation later: by diff'ing log files created by working 
environment with the current environment I fell over log.do_configure: 

--disable-dependency-tracking 

was added in [1]. Tried manual bisecting by

git reset --hard 288343e30604b944dc18fd82172febd314d9c520

é voilà: webkit-gtk builds again. Will send a patch with 
--enable-dependency-tracking after testing...

Andreas
   
   
   I'm planning to add this commit:
   
   http://cgit.openembedded.org/cgit.cgi/openembedded-core/commit/?h=master-nextid=d53a0282be132a4ced507c0277925ae4a0f2f40d
   
   which means you should just be able to set:
   
   CONFIGUREOPT_DEPTRACK = 
   
   for this recipe rather than having multiple configure options and hoping
   the right one wins.
  I thought recipe's EXTRA_OECONF is by design ensured being appended and 
  thereby overwriting options of same target.
   
   I'd also note this means there is a bug somewhere in the webkit
   makefiles...
  Agreed - somebody with time  skills willing to take care?
 
 I'm not sure I have the time or the right skillset for that one but at
 least we've highighted there is a problem there...
 
  If there are no objections I'll send a patch with
  
  CONFIGUREOPT_DEPTRACK = 
  
  for webkit-gtk as soon as d53a0282be132a4ced507c0277925ae4a0f2f40d becomes 
  part of master branch
 
 I've gone ahead and added this since I think we're all agreed on what is
 needed here :)
 
Thanks :))

___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-04 Thread Richard Purdie
On Mon, 2011-10-03 at 20:45 +0200, Andreas Müller wrote:
 On Monday, October 03, 2011 05:29:52 PM Gary Thomas wrote:
   NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: Failed
   ERROR: Task 7 
   (/home/Superandy/data/oe-core/sources/openembedded-core/meta/recipes-sato/webkit/webkit-gtk_svn.bb,
do_compile) failed with exit code '1'
  
   ideas what causes this?
  
   no idea, but I get the same error
  
  
  It builds in Yocto/Poky so you might compare with those recipes.
 Dit you pull [1] and rebuild webkit-gtk?
  
  
 some investigation later: by diff'ing log files created by working 
 environment with the current environment I fell over log.do_configure: 
 
 --disable-dependency-tracking 
 
 was added in [1]. Tried manual bisecting by
 
 git reset --hard 288343e30604b944dc18fd82172febd314d9c520
 
 é voilà: webkit-gtk builds again. Will send a patch with 
 --enable-dependency-tracking after testing...
 
 Andreas


I'm planning to add this commit:

http://cgit.openembedded.org/cgit.cgi/openembedded-core/commit/?h=master-nextid=d53a0282be132a4ced507c0277925ae4a0f2f40d

which means you should just be able to set:

CONFIGUREOPT_DEPTRACK = 

for this recipe rather than having multiple configure options and hoping
the right one wins.

I'd also note this means there is a bug somewhere in the webkit
makefiles...

Cheers,

Richard



___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-04 Thread Andreas Müller
On Tuesday, October 04, 2011 02:40:49 PM Richard Purdie wrote:
 On Mon, 2011-10-03 at 20:45 +0200, Andreas Müller wrote:
  On Monday, October 03, 2011 05:29:52 PM Gary Thomas wrote:
NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: Failed
ERROR: Task 7 
(/home/Superandy/data/oe-core/sources/openembedded-core/meta/recipes-sato/webkit/webkit-gtk_svn.bb,
 do_compile) failed with exit code '1'
   
ideas what causes this?
   
no idea, but I get the same error
   
   
   It builds in Yocto/Poky so you might compare with those recipes.
  Dit you pull [1] and rebuild webkit-gtk?
   
   
  some investigation later: by diff'ing log files created by working 
  environment with the current environment I fell over log.do_configure: 
  
  --disable-dependency-tracking 
  
  was added in [1]. Tried manual bisecting by
  
  git reset --hard 288343e30604b944dc18fd82172febd314d9c520
  
  é voilà: webkit-gtk builds again. Will send a patch with 
  --enable-dependency-tracking after testing...
  
  Andreas
 
 
 I'm planning to add this commit:
 
 http://cgit.openembedded.org/cgit.cgi/openembedded-core/commit/?h=master-nextid=d53a0282be132a4ced507c0277925ae4a0f2f40d
 
 which means you should just be able to set:
 
 CONFIGUREOPT_DEPTRACK = 
 
 for this recipe rather than having multiple configure options and hoping
 the right one wins.
I thought recipe's EXTRA_OECONF is by design ensured being appended and thereby 
overwriting options of same target.
 
 I'd also note this means there is a bug somewhere in the webkit
 makefiles...
Agreed - somebody with time  skills willing to take care?
 
If there are no objections I'll send a patch with

CONFIGUREOPT_DEPTRACK = 

for webkit-gtk as soon as d53a0282be132a4ced507c0277925ae4a0f2f40d becomes part 
of master branch

Andreas

___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


[OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-03 Thread Andreas Müller
Have pulled yesterday all the angstom layers (oe-core / meta-oe ..) and deleted 
all files from temp build dir. For

bitbake webkit-gtk 

I get

NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: Started
ERROR: Function 'do_compile' failed (see 
/home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/temp/log.do_compile.13377
 for further information)
ERROR: Logfile of failure stored in: 
/home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/temp/log.do_compile.13377
Log data follows:
| DEBUG: SITE files ['endian-little', 'bit-32', 'arm-common', 'common-linux', 
'common-glibc', 'arm-linux', 'arm-linux-gnueabi', 'common']
| + cd 
/home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/
| + do_compile
| + base_do_compile
| + '[' -e Makefile -o -e makefile ']'
| + oe_runmake
| + '[' xmake = x ']'
| + bbnote make -j 4
| + echo 'NOTE: make -j 4'
| NOTE: make -j 4
| + make -j 4
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
./Source/WebCore/dom --include ./Source/WebCore/html --include 
./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
./Source/WebCore/css/CSSRule.idl
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
./Source/WebCore/dom --include ./Source/WebCore/html --include 
./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
./Source/WebCore/css/CSSRuleList.idl
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
./Source/WebCore/dom --include ./Source/WebCore/html --include 
./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
./Source/WebCore/css/CSSStyleDeclaration.idl
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
./Source/WebCore/dom --include ./Source/WebCore/html --include 
./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
./Source/WebCore/css/CSSStyleSheet.idl
| Unquoted string attributes may clash with future reserved word at 
Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
| Unquoted string attributes may clash with future reserved word at 
Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
| Unquoted string attributes may clash with future reserved word at 
Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
| Couldn't open file ./DerivedSources/webkit/WebKitDOMCSSRuleListPrivate.h for 
writing at Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1122.
| Couldn't open file ./DerivedSources/webkit/WebKitDOMCSSStyleSheetPrivate.h 
for writing at 

Re: [OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-03 Thread Koen Kooi


Op 3 okt. 2011 om 09:03 heeft Andreas Müller schnitzelt...@gmx.de het 
volgende geschreven:

 Have pulled yesterday all the angstom layers (oe-core / meta-oe ..) and 
 deleted all files from temp build dir. For
 
 bitbake webkit-gtk 
 
 I get
 
 NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: Started
 ERROR: Function 'do_compile' failed (see 
 /home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/temp/log.do_compile.13377
  for further information)
 ERROR: Logfile of failure stored in: 
 /home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/temp/log.do_compile.13377
 Log data follows:
 | DEBUG: SITE files ['endian-little', 'bit-32', 'arm-common', 'common-linux', 
 'common-glibc', 'arm-linux', 'arm-linux-gnueabi', 'common']
 | + cd 
 /home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/
 | + do_compile
 | + base_do_compile
 | + '[' -e Makefile -o -e makefile ']'
 | + oe_runmake
 | + '[' xmake = x ']'
 | + bbnote make -j 4
 | + echo 'NOTE: make -j 4'
 | NOTE: make -j 4
 | + make -j 4
 | /usr/bin/perl -I./Source/WebCore/bindings/scripts 
 ./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
 ./Source/WebCore/dom --include ./Source/WebCore/html --include 
 ./Source/WebCore/css --include ./Source/WebCore/page --include 
 ./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
 ./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
 ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
 ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
 ./Source/WebCore/css/CSSRule.idl
 | /usr/bin/perl -I./Source/WebCore/bindings/scripts 
 ./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
 ./Source/WebCore/dom --include ./Source/WebCore/html --include 
 ./Source/WebCore/css --include ./Source/WebCore/page --include 
 ./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
 ./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
 ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
 ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
 ./Source/WebCore/css/CSSRuleList.idl
 | /usr/bin/perl -I./Source/WebCore/bindings/scripts 
 ./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
 ./Source/WebCore/dom --include ./Source/WebCore/html --include 
 ./Source/WebCore/css --include ./Source/WebCore/page --include 
 ./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
 ./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
 ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
 ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
 ./Source/WebCore/css/CSSStyleDeclaration.idl
 | /usr/bin/perl -I./Source/WebCore/bindings/scripts 
 ./Source/WebCore/bindings/scripts/generate-bindings.pl --include 
 ./Source/WebCore/dom --include ./Source/WebCore/html --include 
 ./Source/WebCore/css --include ./Source/WebCore/page --include 
 ./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir 
 ./DerivedSources/webkit --defines LANGUAGE_GOBJECT=1 
 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 
 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 
 ENABLE_VIDEO=1 ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 
 ENABLE_XSLT=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 
 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator GObject 
 ./Source/WebCore/css/CSSStyleSheet.idl
 | Unquoted string attributes may clash with future reserved word at 
 Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
 | Unquoted string attributes may clash with future reserved word at 
 Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
 | Unquoted string attributes may clash with future reserved word at 
 Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
 | Couldn't open file ./DerivedSources/webkit/WebKitDOMCSSRuleListPrivate.h 
 for writing at 

Re: [OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-03 Thread Gary Thomas

On 2011-10-03 09:24, Koen Kooi wrote:



Op 3 okt. 2011 om 09:03 heeft Andreas Müllerschnitzelt...@gmx.de  het 
volgende geschreven:


Have pulled yesterday all the angstom layers (oe-core / meta-oe ..) and deleted 
all files from temp build dir. For

bitbake webkit-gtk

I get

NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: Started
ERROR: Function 'do_compile' failed (see 
/home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/temp/log.do_compile.13377
 for further information)
ERROR: Logfile of failure stored in: 
/home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/temp/log.do_compile.13377
Log data follows:
| DEBUG: SITE files ['endian-little', 'bit-32', 'arm-common', 'common-linux', 
'common-glibc', 'arm-linux', 'arm-linux-gnueabi', 'common']
| + cd 
/home/Superandy/tmp/oe-core-eglibc/work/armv7a-angstrom-linux-gnueabi/webkit-gtk-1.5.1+svnr90727-r0/
| + do_compile
| + base_do_compile
| + '[' -e Makefile -o -e makefile ']'
| + oe_runmake
| + '[' xmake = x ']'
| + bbnote make -j 4
| + echo 'NOTE: make -j 4'
| NOTE: make -j 4
| + make -j 4
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include ./Source/WebCore/dom --include 
./Source/WebCore/html --include ./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir ./DerivedSources/webkit 
--defines LANGUAGE_GOBJECT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 
ENABLE_PROGRESS_TAG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 ENABLE_VIDEO=1 
ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_WORKERS=1 
ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator 
GObject ./Source/WebCore/css/CSSRule.idl
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include ./Source/WebCore/dom --include 
./Source/WebCore/html --include ./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir ./DerivedSources/webkit 
--defines LANGUAGE_GOBJECT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 
ENABLE_PROGRESS_TAG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 ENABLE_VIDEO=1 
ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_WORKERS=1 
ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator 
GObject ./Source/WebCore/css/CSSRuleList.idl
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include ./Source/WebCore/dom --include 
./Source/WebCore/html --include ./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir ./DerivedSources/webkit 
--defines LANGUAGE_GOBJECT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 
ENABLE_PROGRESS_TAG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 ENABLE_VIDEO=1 
ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_WORKERS=1 
ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator 
GObject ./Source/WebCore/css/CSSStyleDeclaration.idl
| /usr/bin/perl -I./Source/WebCore/bindings/scripts 
./Source/WebCore/bindings/scripts/generate-bindings.pl --include ./Source/WebCore/dom --include 
./Source/WebCore/html --include ./Source/WebCore/css --include ./Source/WebCore/page --include 
./Source/WebCore/xml --include ./Source/WebCore/svg --outputDir ./DerivedSources/webkit 
--defines LANGUAGE_GOBJECT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_METER_TAG=1 
ENABLE_PROGRESS_TAG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 
ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_EVENTSOURCE=1 ENABLE_DOM_STORAGE=1 ENABLE_VIDEO=1 
ENABLE_FULLSCREEN_API=1 ENABLE_VIDEO_TRACK=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_WORKERS=1 
ENABLE_SHARED_WORKERS=1 ENABLE_FILTERS=1 ENABLE_WEB_SOCKETS=1 ENABLE_BLOB=1 --generator 
GObject ./Source/WebCore/css/CSSStyleSheet.idl
| Unquoted string attributes may clash with future reserved word at 
Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
| Unquoted string attributes may clash with future reserved word at 
Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
| Unquoted string attributes may clash with future reserved word at 
Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 1036.
| Couldn't open file ./DerivedSources/webkit/WebKitDOMCSSRuleListPrivate.h for 
writing at Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm line 

Re: [OE-core] bitbake webkit-gtk fails with clean temp dir

2011-10-03 Thread Andreas Müller
On Monday, October 03, 2011 05:29:52 PM Gary Thomas wrote:
  NOTE: package webkit-gtk-1.5.1+svnr90727-r0: task do_compile: Failed
  ERROR: Task 7 
  (/home/Superandy/data/oe-core/sources/openembedded-core/meta/recipes-sato/webkit/webkit-gtk_svn.bb,
   do_compile) failed with exit code '1'
 
  ideas what causes this?
 
  no idea, but I get the same error
 
 
 It builds in Yocto/Poky so you might compare with those recipes.
Dit you pull [1] and rebuild webkit-gtk?
 
 
some investigation later: by diff'ing log files created by working environment 
with the current environment I fell over log.do_configure: 

--disable-dependency-tracking 

was added in [1]. Tried manual bisecting by

git reset --hard 288343e30604b944dc18fd82172febd314d9c520

é voilà: webkit-gtk builds again. Will send a patch with 
--enable-dependency-tracking after testing...

Andreas

[1] 
http://cgit.openembedded.org/cgit.cgi/openembedded-core/commit/?id=970e0ae610804638d00b0a6b85c6e2e895778e8e

___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core