Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2010-01-26 Thread Marc-Antoine Ruel
You didn't say on what flavor. I assume you are doing a release build.
If so, you probably need a x64 OS to link the static library.

You may want to install a few hotpatches from Microsoft,
http://dev.chromium.org/developers/how-tos/build-instructions-windows
lists a fews in addition to the ones listed at
http://webkit.org/building/tools.html. This is especially necessary
with the SDK 7 + VS2005 configuration.

Also, you may be interested in the workaround listed at
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=521439

In short; use /expectedoutputsize:12000

M-A

2010/1/25 wupei pei...@archermind.com:
 Hi,All:

 I am trying to build WebKit-r53371 on windows. But now i am blocked with
 this error when  build the webcore project:

 Performing Pre-Link Event...
 Creating library...
 C:\cygwin\home\wupei\WebKit-r53371\webkitbuild\lib\WebCore.lib : fatal error
 LNK1106: invalid file or disk full: cannot seek to 0x5254F4AC
 Project : warning PRJ0018 : The following environment variables were not
 found:
 $(PRODUCTION)
 $(DXSDK_DIR)
 When I monitored the webcore.lib in the disk space, when Creating
 library... is in progress,
 WebKitBuild/lib/WebCore.lib is created and rapidly grows from a couple
 of megs to 128M, then to 256M, and at last to 512M, 1G. After LNK1106 error
 is displayed, the file is removed.

 Frist, The disk has more than 10GB free space when build the webkit, so I
 think it isn't because of the free space.

 Second, I have seen the Bug 19743 - Release build fails on 32-bit Windows
 (https://bugs.webkit.org/show_bug.cgi?id=19743), but my version is newer
 than the bug fixed one.

 Third, I have done update-webkit before build-webkit.

 And I also seen someone met the same problem in the network, but I can't
 search the solution.

 Dose anyone meet the same problem and have solved it? Will be appreciated
 for any comments.



 WuPei

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2010-01-26 Thread wupei
M-A:
Thank you for reply.
As I  say in the title, I am doing a release build on winXP.
I  try to set up SDK 7 as you suggested, and use /expectedoutputsize:12000.
But it looks nothing help. The result is also LNK1106.
Thanks.

WuPei

- Original Message - 
From: Marc-Antoine Ruel mar...@chromium.org
To: wupei pei...@archermind.com
Cc: webkit-dev@lists.webkit.org
Sent: Wednesday, January 27, 2010 9:27 AM
Subject: Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106


You didn't say on what flavor. I assume you are doing a release build.
If so, you probably need a x64 OS to link the static library.

You may want to install a few hotpatches from Microsoft,
http://dev.chromium.org/developers/how-tos/build-instructions-windows
lists a fews in addition to the ones listed at
http://webkit.org/building/tools.html. This is especially necessary
with the SDK 7 + VS2005 configuration.

Also, you may be interested in the workaround listed at
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=521439

In short; use /expectedoutputsize:12000

M-A

2010/1/25 wupei pei...@archermind.com:
 Hi,All:

 I am trying to build WebKit-r53371 on windows. But now i am blocked with
 this error when build the webcore project:

 Performing Pre-Link Event...
 Creating library...
 C:\cygwin\home\wupei\WebKit-r53371\webkitbuild\lib\WebCore.lib : fatal error
 LNK1106: invalid file or disk full: cannot seek to 0x5254F4AC
 Project : warning PRJ0018 : The following environment variables were not
 found:
 $(PRODUCTION)
 $(DXSDK_DIR)
 When I monitored the webcore.lib in the disk space, when Creating
 library... is in progress,
 WebKitBuild/lib/WebCore.lib is created and rapidly grows from a couple
 of megs to 128M, then to 256M, and at last to 512M, 1G. After LNK1106 error
 is displayed, the file is removed.

 Frist, The disk has more than 10GB free space when build the webkit, so I
 think it isn't because of the free space.

 Second, I have seen the Bug 19743 - Release build fails on 32-bit Windows
 (https://bugs.webkit.org/show_bug.cgi?id=19743), but my version is newer
 than the bug fixed one.

 Third, I have done update-webkit before build-webkit.

 And I also seen someone met the same problem in the network, but I can't
 search the solution.

 Dose anyone meet the same problem and have solved it? Will be appreciated
 for any comments.



 WuPei

 ___
 webkit-dev mailing list
 webkit-dev@lists.webkit.org
 http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2010-01-25 Thread wupei
Hi,All:

I am trying to build WebKit-r53371 on windows. But now i am blocked with this 
error when  build the webcore project:

Performing Pre-Link Event...
Creating library...
C:\cygwin\home\wupei\WebKit-r53371\webkitbuild\lib\WebCore.lib : fatal error 
LNK1106: invalid file or disk full: cannot seek to 0x5254F4AC
Project : warning PRJ0018 : The following environment variables were not found:
$(PRODUCTION)
$(DXSDK_DIR)

When I monitored the webcore.lib in the disk space, when Creating library... 
is in progress, 
WebKitBuild/lib/WebCore.lib is created and rapidly grows from a couple 
of megs to 128M, then to 256M, and at last to 512M, 1G. After LNK1106 error 
is displayed, the file is removed.
Frist, The disk has more than 10GB free space when build the webkit, so I think 
it isn't because of the free space.

Second, I have seen the Bug 19743 - Release build fails on 32-bit Windows 
(https://bugs.webkit.org/show_bug.cgi?id=19743), but my version is newer than 
the bug fixed one.

Third, I have done update-webkit before build-webkit.

And I also seen someone met the same problem in the network, but I can't search 
the solution.

Dose anyone meet the same problem and have solved it? Will be appreciated for 
any comments.



WuPei
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2009-08-11 Thread Adam Roben

On Jul 31, 2009, at 11:24 PM, yyp...@sohu.com wrote:

Yes, I have run the update-webkit before every build process, so i  
think the version should be the newest. I saw the fix happened on  
April, so i think the current version i am using should include this  
fix. Or need I patch the fix seperately?



Sounds like you should have the fix in your tree. I'm not sure what's  
going on!


-Adam




- 原文 -

From: Adam Robenaro...@apple.com
Subject:Re: [webkit-dev] Building Win32/Release WebKit: linker error  
LNK1106


On Jul 31, 2009, at 4:37 AM, yyp...@sohu.com wrote:

Are there any new comments about this issue? I am blocked by this  
issue, any help will be appreciated.


This looks like another instance of https://bugs.webkit.org/show_bug.cgi?id=19743 
. The problem is not due to disk space; the linker is running out  
of virtual address space.


I haven't heard of anyone having this problem recently. Are you  
building the most recent revision of WebKit? Maybe you don't have  
the fix for bug 19743 in your tree?


-Adam


- 原文 -

From: yyp...@sohu.com
Subject:回复: Re: [webkit-dev] Building Win32/Release WebKit:  
linker error LNK1106


Thanks, Brent:
The disk has more than 18GB free space when build the webkit, so I  
think it isn't because of the free space.







- 原文 -

From: Brent Fulghambfulg...@gmail.com
Subject:Re: [webkit-dev] Building Win32/Release WebKit: linker  
error LNK1106

Hi,

On Wed, Jul 29, 2009 at 12:33 PM, Brodtthomas.br...@porabo.ch  
wrote:
 I haven't noticed that the file grows that much, but I saw the  
memory grow

 over 1 GB while webkit.dll was being linked. [...]

On Wed, Jul 29, 2009 at 15:03:39 GMT, yyp...@sohu.com wrote:
 D:\Customer\Webkit\lib\WebCore.lib : fatal error LNK1106: invalid  
file or

 disk full: cannot seek to 0x2003875B

WebKit uses a lot of disk space to build. At one point, it was
approaching 2 GB and work was done to slim it down.

If you don't have 5-10 GB of free space, you should probably try to
free up some room before attempting a build.

-Brent



搜狐“.”帐号抢注,立即开始
抽奖换礼,好运有你!




搜狐“.”帐号抢注,立即开始
抽奖换礼,好运有你!
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev





搜狐“.”帐号抢注,立即开始
职场老虎机,幸运成份有多少?


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2009-07-31 Thread yypprr
Are there any new comments about this issue? I am blocked by this issue, any 
help will be appreciated.

Thanks
Peng
 
- 原文 - 
From: yyp...@sohu.com 
Subject:回复: Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

Thanks, Brent:

The disk has more than 18GB free space when build the webkit, so I think it 
isn't because of the free space.




 
- 原文 - 
From: Brent Fulghamlt;bfulg...@gmail.comgt; 
Subject:Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106
Hi,

On Wed, Jul 29, 2009 at 12:33 PM, Brodtlt;thomas.br...@porabo.chgt; wrote:
gt; I haven't noticed that the file grows that much, but I saw the memory grow
gt; over 1 GB while webkit.dll was being linked. [...]

On Wed, Jul 29, 2009 at 15:03:39 GMT, yyp...@sohu.com wrote:
gt; D:\Customer\Webkit\lib\WebCore.lib : fatal error LNK1106: invalid file or
gt; disk full: cannot seek to 0x2003875B

WebKit uses a lot of disk space to build. At one point, it was
approaching 2 GB and work was done to slim it down.

If you don't have 5-10 GB of free space, you should probably try to
free up some room before attempting a build.

-Brent



11月名企热招职位--
亲爱的老师,我要谢谢您! --
3天购物省10元,7天购物省100元--
古怪美女 妖孽?邻家mm?-- 上51job,轻松搞定好工作!--
送你08年最惹火的礼物(多图)--
12月18日《天龙八部》上演新版“大决战”--
快乐圣诞,闪电邮周周有大礼--
寻找童趣 好游戏让你停不下来--
搜狐“.”帐号抢注,立即开始
搜狐闪电邮奥运特别版,登录有无限惊喜--网游玩家必看08年绝对不能错过的好游戏!--搜狐闪邮积分 
金秋大兑奖!--中奖这么简单?就是注册、登录?--快乐圣诞,闪电邮周周有大礼--乐友超值购物满300减30,100多款礼品任您选--山寨春晚幕后花絮揭秘--情人节,每天一束红玫瑰免费放送--春季特卖场,最低三折起--我所见过的劳动节最美的礼物!--抽奖换礼,好运有你!
 

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2009-07-31 Thread Adam Roben

On Jul 31, 2009, at 4:37 AM, yyp...@sohu.com wrote:

Are there any new comments about this issue? I am blocked by this  
issue, any help will be appreciated.


This looks like another instance of https://bugs.webkit.org/show_bug.cgi?id=19743 
. The problem is not due to disk space; the linker is running out of  
virtual address space.


I haven't heard of anyone having this problem recently. Are you  
building the most recent revision of WebKit? Maybe you don't have the  
fix for bug 19743 in your tree?


-Adam


- 原文 -

From: yyp...@sohu.com
Subject:回复: Re: [webkit-dev] Building Win32/Release WebKit:  
linker error LNK1106


Thanks, Brent:
The disk has more than 18GB free space when build the webkit, so I  
think it isn't because of the free space.







- 原文 -

From: Brent Fulghambfulg...@gmail.com
Subject:Re: [webkit-dev] Building Win32/Release WebKit: linker error  
LNK1106

Hi,

On Wed, Jul 29, 2009 at 12:33 PM, Brodtthomas.br...@porabo.ch wrote:
 I haven't noticed that the file grows that much, but I saw the  
memory grow

 over 1 GB while webkit.dll was being linked. [...]

On Wed, Jul 29, 2009 at 15:03:39 GMT, yyp...@sohu.com wrote:
 D:\Customer\Webkit\lib\WebCore.lib : fatal error LNK1106: invalid  
file or

 disk full: cannot seek to 0x2003875B

WebKit uses a lot of disk space to build. At one point, it was
approaching 2 GB and work was done to slim it down.

If you don't have 5-10 GB of free space, you should probably try to
free up some room before attempting a build.

-Brent



搜狐“.”帐号抢注,立即开始
抽奖换礼,好运有你!




搜狐“.”帐号抢注,立即开始
抽奖换礼,好运有你!
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2009-07-31 Thread yypprr
Thanks, Adam.
 
Yes, I have run the update-webkit before every build process, so i think the 
version should be the newest. I saw the fix happened on April, so i think the 
current version i am using should include this fix. Or need I patch the fix 
seperately?
 
Thanks
Peng



- 原文 - From: Adam Robenlt;aro...@apple.comgt; Subject:Re: 
[webkit-dev] Building Win32/Release WebKit: linker error LNK1106


On Jul 31, 2009, at 4:37 AM, yyp...@sohu.com wrote:
Are there any new comments about this issue? I am blocked by this issue, any 
help will be appreciated.
This looks like another instance of 
lt;https://bugs.webkit.org/show_bug.cgi?id=19743gt;. The problem is not due 
to disk space; the linker is running out of virtual address space.

I haven't heard of anyone having this problem recently. Are you building the 
most recent revision of WebKit? Maybe you don't have the fix for bug 19743 in 
your tree?

-Adam




- 原文 - From: yyp...@sohu.com Subject:回复: Re: [webkit-dev] Building 
Win32/Release WebKit: linker error LNK1106

Thanks, Brent: The disk has more than 18GB free space when build the webkit, so 
I think it isn't because of the free space.



- 原文 - From: Brent Fulghamlt;bfulg...@gmail.comgt; Subject:Re: 
[webkit-dev] Building Win32/Release WebKit: linker error LNK1106
Hi,On Wed, Jul 29, 2009 at 12:33 PM, Brodtlt;thomas.br...@porabo.chgt; 
wrote:gt; I haven't noticed that the file grows that much, but I saw the 
memory growgt; over 1 GB while webkit.dll was being linked. [...]On Wed, Jul 
29, 2009 at 15:03:39 GMT, yyp...@sohu.com wrote:gt; 
D:\Customer\Webkit\lib\WebCore.lib : fatal error LNK1106: invalid file orgt; 
disk full: cannot seek to 0x2003875BWebKit uses a lot of disk space to build. 
At one point, it wasapproaching 2 GB and work was done to slim it down.If you 
don't have 5-10 GB of free space, you should probably try tofree up some room 
before attempting a build.-Brent





11月名企热招职位--亲爱的老师,我要谢谢您! --3天购物省10元,7天购物省100元--古怪美女 
妖孽?邻家mm?--上51job,轻松搞定好工作!--送你08年最惹火的礼物(多图)--12月18日《天龙八部》上演新版“大决战”--快乐圣诞,闪电邮周周有大礼--寻找童趣
 好游戏让你停不下来--搜狐“.”帐号抢注,立即开始 
搜狐闪电邮奥运特别版,登录有无限惊喜--网游玩家必看08年绝对不能错过的好游戏!--搜狐闪邮积分 
金秋大兑奖!--中奖这么简单?就是注册、登录?--快乐圣诞,闪电邮周周有大礼--乐友超值购物满300减30,100多款礼品任您选--山寨春晚幕后花絮揭秘--情人节,每天一束红玫瑰免费放送--春季特卖场,最低三折起--我所见过的劳动节最美的礼物!--

抽奖换礼,好运有你! 








11月名企热招职位--亲爱的老师,我要谢谢您! --3天购物省10元,7天购物省100元--古怪美女 
妖孽?邻家mm?--上51job,轻松搞定好工作!--送你08年最惹火的礼物(多图)--12月18日《天龙八部》上演新版“大决战”--快乐圣诞,闪电邮周周有大礼--寻找童趣
 好游戏让你停不下来--搜狐“.”帐号抢注,立即开始 
搜狐闪电邮奥运特别版,登录有无限惊喜--网游玩家必看08年绝对不能错过的好游戏!--搜狐闪邮积分 
金秋大兑奖!--中奖这么简单?就是注册、登录?--快乐圣诞,闪电邮周周有大礼--乐友超值购物满300减30,100多款礼品任您选--山寨春晚幕后花絮揭秘--情人节,每天一束红玫瑰免费放送--春季特卖场,最低三折起--我所见过的劳动节最美的礼物!--

抽奖换礼,好运有你! 

___webkit-dev mailing 
listwebkit-...@lists.webkit.orghttp://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2009-07-29 Thread yypprr
Hi, All:
 
I am a newer of WebKit. and when i try to build webkit on windows, i got this 
following error message when build the webcore project:
Performing Pre-Link Event...Creating 
library...D:\Customer\Webkit\lib\WebCore.lib : fatal error LNK1106: invalid 
file or disk full: cannot seek to 0x2003875BProject : warning PRJ0018 : The 
following environment variables were not found:$(PRODUCTION)
When I monitored the webcore.lib in the disk space, when Creating library... 
is in progress, WebKitBuild/lib/WebCore.lib is created and rapidly grows from a 
couple of megs to 128M, then to 256M, and at last to 512M, 1G. After LNK1106 
error is displayed, the file is removed.
 
Does anyone met the similar issue? Will be appreciated for any comments.
 
Thanks
Peng___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2009-07-29 Thread Brodt
I haven't noticed that the file grows that much, but I saw the memory grow 
over 1 GB while webkit.dll was being linked. I had to give the VMWare 
virtual machine more RAM, otherwise the build failed. Maybe I should also 
observe the file...

Thomas


-Original Message-

From: yyp...@sohu.com

To: webkit-dev@lists.webkit.org

Date: Wed, 29 Jul 2009 15:03:39 GMT

Subject: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106




Hi, All:



I am a newer of WebKit. and when i try to build webkit on windows, i got 
this following error message when build the webcore project:

Performing Pre-Link Event...
Creating library...
D:\Customer\Webkit\lib\WebCore.lib : fatal error LNK1106: invalid file or 
disk full: cannot seek to 0x2003875B
Project : warning PRJ0018 : The following environment variables were not 
found:
$(PRODUCTION)

When I monitored the webcore.lib in the disk space, when Creating 
library... is in progress, 
WebKitBuild/lib/WebCore.lib is created and rapidly grows from a couple 
of megs to 128M, then to 256M, and at last to 512M, 1G. After LNK1106 error 
is displayed, the file is removed.



Does anyone met the similar issue? Will be appreciated for any comments.



Thanks

Peng

 

搜狐“.”帐号抢注,立即开始 
[http://goto.mail.sohu.com/goto.php?code=dotreg_zhujiao]












抽奖换礼,好运有你! 
[http://goto.mail.sohu.com/goto.php?code=090601jifen]
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2009-07-29 Thread Brent Fulgham
Hi,

On Wed, Jul 29, 2009 at 12:33 PM, Brodtthomas.br...@porabo.ch wrote:
 I haven't noticed that the file grows that much, but I saw the memory grow
 over 1 GB while webkit.dll was being linked. [...]

On Wed, Jul 29, 2009 at 15:03:39 GMT, yyp...@sohu.com wrote:
 D:\Customer\Webkit\lib\WebCore.lib : fatal error LNK1106: invalid file or
 disk full: cannot seek to 0x2003875B

WebKit uses a lot of disk space to build.  At one point, it was
approaching 2 GB and work was done to slim it down.

If you don't have 5-10 GB of free space, you should probably try to
free up some room before attempting a build.

-Brent
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Building Win32/Release WebKit: linker error LNK1106

2007-07-27 Thread Artem Ananiev

Just an addition: Win32/Debug build has been finished successfully.

Artem Ananiev wrote:

Hi, all,

I'm trying to build WebKit in Release mode and get the following message 
from linker when building WebCore subproject:




1Performing Pre-Build Event...

1cl : Command line warning D9040 : ignoring option '/analyze'; Code 
Analysis warnings are not available in this edition of the compiler


1tmp.cpp

1make: Nothing to be done for `all'.

1Creating library...

1..path\to\webkit..\WebKitBuild\lib\WebCore.lib : fatal error LNK1106: 
invalid file or disk full: cannot seek to 0x20150F02




The disk drive has about 12Gb of free space. I have also noticed another 
interesting thing: when Creating library... is in progress, 
WebKitBuild/lib/WebCore.lib is created and rapidly grows from a couple 
of megs to 128M, then to 256M, and at last to 512M. After LNK1106 error 
is displayed, the file is removed.


Thanks,

Artem
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev