Re: [webkit-dev] How to change an .exp file?

2011-08-26 Thread 王显著
Thanks everyone. My patch already successfully builds on Mac, because of my updated .exp file which I thought for Windows :) I got the impression that the not updated .exp file breaks Windows build because I saw the following error on win-ews (now I know I should fix the .def file): 3>Linking...

Re: [webkit-dev] How to change an .exp file?

2011-08-26 Thread Kevin Ollivier
Hi all, Just a reminder that if someone could review or rubberstamp the latest patch at https://bugs.webkit.org/show_bug.cgi?id=27551 , we could move to specifying exported symbols in the headers themselves and get out of the business of having to alter multiple export symbol files each time a

Re: [webkit-dev] How to change an .exp file?

2011-08-26 Thread Darin Adler
On Aug 26, 2011, at 10:14 AM, Scott Graham wrote: > Maybe there's a better way someone can point out though. I believe that using the Windows EWS server you can get error messages that tell you the symbols that need to be in the def files. -- Darin _

Re: [webkit-dev] How to change an .exp file?

2011-08-26 Thread Scott Graham
I believe the Windows ones are the .def files. I had to make a similar change here: https://bugs.webkit.org/attachment.cgi?id=102529&action=prettypatch (e.g. Source/WebKit2/win/WebKit2.def and similar) You have to be able mangle in your head it seems. I found the easiest way was to make a simple p

Re: [webkit-dev] How to change an .exp file?

2011-08-26 Thread Darin Adler
On Aug 26, 2011, at 1:50 AM, Xianzhu Wang (王显著) wrote: > I'm developing on Linux. One of my patch failed to build on Windows because I > haven't changed the related .exp file (e.g. JavaScriptCore.exp). > > I just did the following on Linux to update the file: > 1. nm xx.o | grep " T " | sed 's

Re: [webkit-dev] Building Chromium port of WebKit on Windows

2011-08-26 Thread Mikhail Naganov
OK, following setup instructions for the buildbot, I was able to compile the port under Windows. Thanks again, Dimirti! I've updated the Wiki page: https://trac.webkit.org/wiki/Chromium On Thu, Aug 25, 2011 at 20:53, Peter Kasting wrote: > On Thu, Aug 25, 2011 at 10:31 AM, Dimitri Glazkov > wro

[webkit-dev] How to change an .exp file?

2011-08-26 Thread 王显著
Hi, I'm developing on Linux. One of my patch failed to build on Windows because I haven't changed the related .exp file (e.g. JavaScriptCore.exp). I just did the following on Linux to update the file: 1. nm xx.o | grep " T " | sed 's/^.\{19\}/_/' 2. replace related lines in the .exp file with