Re: [webkit-dev] WebKit build

2017-07-14 Thread Konstantin Tokarev


14.07.2017, 17:00, "Nagendra K" :
> Hi All
>
> Is it possible to build WebKit without any port?

No.

> I want to add custom port above that step by step and check.
> I saw the build-webkit Script which gives "--only -webkit build" option, but 
> this is not working.
>
> Thanks and Regards,
> Nagendra
> ,
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev


-- 
Regards,
Konstantin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] WebKit build

2017-07-14 Thread Nagendra K
Hi All

Is it possible to build WebKit without any port?

I want to add custom port above that step by step and check.
I saw the build-webkit Script which gives "--only -webkit build" option,
but this is not working.

Thanks and Regards,
Nagendra
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit Build

2017-07-06 Thread Nagendra K
Hi All,
Sorry for the below question, it was my mistake to comment a  line in the
cmakelists.txt

Thanks and Regards,
Nagendra


On 6 Jul 2017 18:56, "Nagendra K"  wrote:

Hi All,

I am trying to build WebKit using a custom port which I am adapting
currently. I am hit with below issue.

I am building the JavaScriptCore and hit with a error, it expects
Bytecodes.h to be generated, but this is not happening. How is this
generated?

Thanks and Regards,
Nagendra
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] WebKit Build

2017-07-06 Thread Nagendra K
Hi All,

I am trying to build WebKit using a custom port which I am adapting
currently. I am hit with below issue.

I am building the JavaScriptCore and hit with a error, it expects
Bytecodes.h to be generated, but this is not happening. How is this
generated?

Thanks and Regards,
Nagendra
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit Build dependencies

2017-06-23 Thread Michael Catanzaro

I just found this list:

https://trac.webkit.org/wiki/WebKitGTK/Dependencies

It looks mostly accurate to me, but slightly outdated. I see it's 
missing at least libhyphen. There might be more.


Michael

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


Re: [webkit-dev] WebKit Build dependencies

2017-06-23 Thread Michael Catanzaro
On Thu, Jun 22, 2017 at 6:51 AM, Adrian Perez de Castro 
 wrote:
On Thu, 22 Jun 2017 15:41:26 +0530, Nagendra K 
 wrote:


 To build WebKit alone for a cross platform embedded device, want to 
know
 the list of dependencies/packages  required to build on 
host(Ubuntu) and
 dependencies to run on host other than toolchain. Request some to 
help

 where to find this information.


For the GTK+ and WPE ports you can get an idea from the JHBuild 
module sets:


That's true, but since the JHBuild modulesets exist for a different 
purpose, I wouldn't recommend looking at these. They contain stuff that 
won't be needed, and do not contain stuff that will be needed.


Instead, it would be better to look at the Build-Depends in Ubuntu's 
package. 'sudo apt-get build-dep webkit2gtk' should install everything 
or almost everything you need. Alternatively, to make your list, see 
[1] and look for a .debian.tar.xz to see the source for the Ubuntu 
package, e.g. [2], then look at the Build-Depends in the control file.


Of course, you can also just try to build to find out what's missing. 
CMake should give you an error message when you are missing a required 
dependency. The build should not be allowed to begin until you have 
them all installed.


Michael

[1] https://launchpad.net/ubuntu/+source/webkit2gtk
[2] 
https://launchpad.net/ubuntu/+archive/primary/+files/webkit2gtk_2.16.4-1.debian.tar.xz


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


Re: [webkit-dev] WebKit Build dependencies

2017-06-22 Thread Konstantin Tokarev


22.06.2017, 14:52, "Adrian Perez de Castro" :
> On Thu, 22 Jun 2017 15:41:26 +0530, Nagendra K  wrote:
>
>>  To build WebKit alone for a cross platform embedded device, want to know
>>  the list of dependencies/packages required to build on host(Ubuntu) and
>>  dependencies to run on host other than toolchain. Request some to help
>>  where to find this information.
>
> For the GTK+ and WPE ports you can get an idea from the JHBuild module sets:
>
>    https://trac.webkit.org/browser/webkit/trunk/Tools/gtk/jhbuild.modules
>    https://trac.webkit.org/browser/webkit/trunk/Tools/wpe/jhbuild.modules

Note that you can get rid of many dependencies if you disable some WebKit 
features. E.g. some of these jhbuild modules are needed only for WebRTC, and 
disabling HTML5 video/audio will cut off a lot of stuff further.

>
> The above are neeed *at run-time*, and for building you will need a bunch of
> additional tools. The “install-dependencies” scripts can give you an idea:
>
>   https://trac.webkit.org/browser/webkit/trunk/Tools/gtk/install-dependencies
>   https://trac.webkit.org/browser/webkit/trunk/Tools/wpe/install-dependencies

For the record, install-dependencies includes packages that may be needed to 
build jhbuild modules mentioned above, but not necessary for WebKit itself.

You can consult to existing packages of WebKitGTK+ to get better picture of 
build-time and run-time dependencies

>
> I hope this helps.
>
> Cheers,
>
> --
>  Adrián 🎩
> ,
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev

-- 
Regards,
Konstantin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit Build dependencies

2017-06-22 Thread Adrian Perez de Castro
On Thu, 22 Jun 2017 15:41:26 +0530, Nagendra K  wrote:

> To build WebKit alone for a cross platform embedded device, want to know
> the list of dependencies/packages  required to build on host(Ubuntu) and
> dependencies to run on host other than toolchain. Request some to help
> where to find this information.

For the GTK+ and WPE ports you can get an idea from the JHBuild module sets:

   https://trac.webkit.org/browser/webkit/trunk/Tools/gtk/jhbuild.modules
   https://trac.webkit.org/browser/webkit/trunk/Tools/wpe/jhbuild.modules

The above are neeed *at run-time*, and for building you will need a bunch of
additional tools. The “install-dependencies” scripts can give you an idea:

  https://trac.webkit.org/browser/webkit/trunk/Tools/gtk/install-dependencies
  https://trac.webkit.org/browser/webkit/trunk/Tools/wpe/install-dependencies

I hope this helps.

Cheers,


--
 Adrián 🎩


pgpeu9tC5kUBy.pgp
Description: PGP signature
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] WebKit Build dependencies

2017-06-22 Thread Nagendra K
Hi,

To build WebKit alone for a cross platform embedded device, want to know
the list of dependencies/packages  required to build on host(Ubuntu) and
dependencies to run on host other than toolchain. Request some to help
where to find this information.

Thanks and Regards,
Nags
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-14 Thread Olmstead, Don
I can confirm that wincairo builds with the following revision 
https://trac.webkit.org/changeset/209809 on 64-bit

From: webkit-dev-boun...@lists.webkit.org 
[mailto:webkit-dev-boun...@lists.webkit.org] On Behalf Of Plamen Dimitrov
Sent: Wednesday, December 14, 2016 6:55 AM
To: youenn fablet 
Cc: webkit-dev@lists.webkit.org
Subject: Re: [webkit-dev] WebKit build failed

This is the log.

On Wed, Dec 14, 2016 at 4:40 PM, youenn fablet 
mailto:youe...@gmail.com>> wrote:
I guess you tried something like "./Tools/Scripts/build-webkit --release 
--wincairo" or "perl ./Tools/Scripts/build-webkit --release --wincairo"?

If so, can you provide the log?


Le mer. 14 déc. 2016 à 13:01, Plamen Dimitrov 
mailto:plam...@coherent-labs.com>> a écrit :
OK. How to build webkit-wincairo correctly?

On Wed, Dec 14, 2016 at 11:40 AM, Konstantin Tokarev 
mailto:annu...@yandex.ru>> wrote:


14.12.2016, 12:22, "Plamen Dimitrov" 
mailto:plam...@coherent-labs.com>>:
> Hi all,
>
> if  WinCairo build is OK why I cann't build it?
>
> I've still cannot generated a lot of files.
> It seems that DerivedSources.make has not been invoked.

CMake build does not use DerivedSources.make

> How I can generate the files manually?  perl build-webkit --release 
> --wincairo not works for me the error is error C2672: 'std::invoke': no 
> matching overloaded function found"
> It is very important to build it today.

--
Regards,
Konstantin

___
webkit-dev mailing list
webkit-dev@lists.webkit.org<mailto:webkit-dev@lists.webkit.org>
https://lists.webkit.org/mailman/listinfo/webkit-dev

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


Re: [webkit-dev] WebKit build failed

2016-12-14 Thread Plamen Dimitrov
This is the log.

On Wed, Dec 14, 2016 at 4:40 PM, youenn fablet  wrote:

> I guess you tried something like "./Tools/Scripts/build-webkit --release
> --wincairo" or "perl ./Tools/Scripts/build-webkit --release --wincairo"?
>
> If so, can you provide the log?
>
>
> Le mer. 14 déc. 2016 à 13:01, Plamen Dimitrov 
> a écrit :
>
>> OK. How to build webkit-wincairo correctly?
>>
>> On Wed, Dec 14, 2016 at 11:40 AM, Konstantin Tokarev 
>> wrote:
>>
>>
>>
>> 14.12.2016, 12:22, "Plamen Dimitrov" :
>> > Hi all,
>> >
>> > if  WinCairo build is OK why I cann't build it?
>> >
>> > I've still cannot generated a lot of files.
>> > It seems that DerivedSources.make has not been invoked.
>>
>> CMake build does not use DerivedSources.make
>>
>> > How I can generate the files manually?  perl build-webkit --release
>> --wincairo not works for me the error is error C2672: 'std::invoke': no
>> matching overloaded function found"
>> > It is very important to build it today.
>>
>>
>> --
>> Regards,
>> Konstantin
>>
>>
>> ___
>> webkit-dev mailing list
>> webkit-dev@lists.webkit.org
>> https://lists.webkit.org/mailman/listinfo/webkit-dev
>>
>
Checking for newer version of WinCairoRequirements.zip...
Located a file of type application/zip of size 33684460.
Current WinCairoRequirements is up to date.
[1/2691] cmd.exe /C "cd /D 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\Source\WTF\wtf && 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\DerivedSources\WTF\preBuild.cmd"
[2/2691] cmd.exe /C "cd /D 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\Source\JavaScriptCore && 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\DerivedSources\JavaScriptCore\preBuild.cmd"
[3/2691] cmd.exe /C "cd /D 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\Source\WebCore && 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\DerivedSources\WebCore\preBuild.cmd"
[4/2691] cmd.exe /C "cd /D 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\Tools\TestWebKitAPI && 
F:\WebKit_Repo\WebKit\WebKitBuild\Release\DerivedSources\WebCore\preBuild.cmd"
[5/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\IntegerToStringConversion.cpp.obj
[6/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\WTFString.cpp.obj
[7/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\WorkQueue.cpp.obj
[8/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\ListHashSet.cpp.obj
[9/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\WeakPtr.cpp.obj
[10/2691] Building CXX object 
Source\JavaScriptCore\CMakeFiles\LLIntOffsetsExtractor.dir\llint\LLIntOffsetsExtractor.cpp.obj
FAILED: 
Source/JavaScriptCore/CMakeFiles/LLIntOffsetsExtractor.dir/llint/LLIntOffsetsExtractor.cpp.obj
 
C:\PROGRA~2\MI0E91~1.0\VC\bin\amd64\cl.exe   /nologo /TP   
@Source\JavaScriptCore\CMakeFiles\LLIntOffsetsExtractor.dir\llint\LLIntOffsetsExtractor.cpp.obj.rsp
 /showIncludes 
/FoSource\JavaScriptCore\CMakeFiles\LLIntOffsetsExtractor.dir\llint\LLIntOffsetsExtractor.cpp.obj
 /FdSource\JavaScriptCore\CMakeFiles\LLIntOffsetsExtractor.dir\ /FS -c 
F:\WebKit_Repo\WebKit\Source\JavaScriptCore\llint\LLIntOffsetsExtractor.cpp
C:\Program Files (x86)\Microsoft Visual Studio 
14.0\VC\INCLUDE\type_traits(1469): error C2672: 'std::invoke': no matching 
overloaded function found
f:\webkit_repo\webkit\source\javascriptcore\runtime\JSObject.h(1376): note: see 
reference to class template instantiation 'std::result_of' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 
14.0\VC\INCLUDE\type_traits(1469): error C2893: Failed to specialize function 
template 'unknown-type std::invoke(_Callable &&,_Types &&...)'
C:\Program Files (x86)\Microsoft Visual Studio 
14.0\VC\INCLUDE\type_traits(1469): note: With the following template arguments:
C:\Program Files (x86)\Microsoft Visual Studio 
14.0\VC\INCLUDE\type_traits(1469): note: '_Callable=JSC::PropertySlot'
C:\Program Files (x86)\Microsoft Visual Studio 
14.0\VC\INCLUDE\type_traits(1469): note: '_Types={bool, JSC::PropertySlot &}'
[11/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\EnumTraits.cpp.obj
[12/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\Deque.cpp.obj
[13/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\Vector.cpp.obj
[14/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\HashSet.cpp.obj
[15/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\DateMath.cpp.obj
[16/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\HashMap.cpp.obj
[17/2691] Building CXX object 
Tools\TestWebKitAPI\CMakeFiles\TestWTFLib.dir\Tests\WTF\CheckedArithmeticOperations.cpp.obj
[18/2691] Generate bindings (DumpRenderTreeBindings)
FAILED: Tools/DumpRenderTree/CMakeFiles/DumpRenderTreeBindings 
DerivedSources/DumpRenderTree/JSUIScriptController.cpp 

Re: [webkit-dev] WebKit build failed

2016-12-14 Thread youenn fablet
I guess you tried something like "./Tools/Scripts/build-webkit --release
--wincairo" or "perl ./Tools/Scripts/build-webkit --release --wincairo"?

If so, can you provide the log?


Le mer. 14 déc. 2016 à 13:01, Plamen Dimitrov  a
écrit :

> OK. How to build webkit-wincairo correctly?
>
> On Wed, Dec 14, 2016 at 11:40 AM, Konstantin Tokarev 
> wrote:
>
>
>
> 14.12.2016, 12:22, "Plamen Dimitrov" :
> > Hi all,
> >
> > if  WinCairo build is OK why I cann't build it?
> >
> > I've still cannot generated a lot of files.
> > It seems that DerivedSources.make has not been invoked.
>
> CMake build does not use DerivedSources.make
>
> > How I can generate the files manually?  perl build-webkit --release
> --wincairo not works for me the error is error C2672: 'std::invoke': no
> matching overloaded function found"
> > It is very important to build it today.
>
>
> --
> Regards,
> Konstantin
>
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-14 Thread Plamen Dimitrov
OK. How to build webkit-wincairo correctly?

On Wed, Dec 14, 2016 at 11:40 AM, Konstantin Tokarev 
wrote:

>
>
> 14.12.2016, 12:22, "Plamen Dimitrov" :
> > Hi all,
> >
> > if  WinCairo build is OK why I cann't build it?
> >
> > I've still cannot generated a lot of files.
> > It seems that DerivedSources.make has not been invoked.
>
> CMake build does not use DerivedSources.make
>
> > How I can generate the files manually?  perl build-webkit --release
> --wincairo not works for me the error is error C2672: 'std::invoke': no
> matching overloaded function found"
> > It is very important to build it today.
>
>
> --
> Regards,
> Konstantin
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-14 Thread Konstantin Tokarev


14.12.2016, 12:22, "Plamen Dimitrov" :
> Hi all,
>
> if  WinCairo build is OK why I cann't build it?
>
> I've still cannot generated a lot of files.
> It seems that DerivedSources.make has not been invoked.

CMake build does not use DerivedSources.make

> How I can generate the files manually?  perl build-webkit --release 
> --wincairo not works for me the error is error C2672: 'std::invoke': no 
> matching overloaded function found"
> It is very important to build it today.


-- 
Regards,
Konstantin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-14 Thread Plamen Dimitrov
Hi all,

if  WinCairo build is OK why I cann't build it?

I've still cannot generated a lot of files.
It seems that DerivedSources.make has not been invoked. How I can generate
the files manually?  perl build-webkit --release --wincairo not works for
me the error is error C2672: 'std::invoke': no matching overloaded function
found"
It is very important to build it today.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-12 Thread Alex Christensen

> On Dec 12, 2016, at 4:30 AM, Konstantin Tokarev  wrote:
> 
> 
> 
> 12.12.2016, 12:25, "Plamen Dimitrov" :
>> Hi all, I am trying to build webkit wincairo 1) I've done 2, 3, 4, 5, 6, 7, 
>> 8, 9,10 and 13 from this list: 
>> https://webkit.org/webkit-on-windows/#installing-developer-tools 2) I've 
>> installed Ruby 2.0.0-p648 and DevKit-mingw64 from here: 
>> http://rubyinstaller.org/downloads/ 3) I've run "update-webkit"; 
>> "update-webkit --wincairo"; "update-webkit-wincairo-libs" from VS2015 native 
>> tool command prompt. And when I've run "build-webkit --wincairo --release" 
>> the build has failed with "C:\Program Files (x86)\Microsoft Visual Studio 
>> 14.0\VC\INCLUDE\type_traits(1469): error C2672: 'std::invoke': no matching 
>> overloaded function found" and "C:\Program Files (x86)\Microsoft Visual 
>> Studio 14.0\VC\INCLUDE\type_traits(1469): error C2893: Failed to specialize 
>> function template 'unknown-type std::invoke(_Callable &&,_Types &&...)'" 
>> Have you ever seen it before? Thank you in advance, Plamen.
I’ve never seen that build error before.  It’s possible there’s something wrong 
with your build configuration.  I would need more context than just this error 
message.  What file was being compiled when this error message was generated?  
Exactly what version of Visual Studio are you using?  Does your computer have 
other compilers installed that it might be using accidentally?  It is possible 
that the build was broken at the revision you tried, but I don’t think that is 
likely in this case.
>> ,
> 
> 
> Hi,
> 
> Unfortunately, it's quite possible that WinCairo does not build on some 
> arbitrary trunk revision. If you watch waterfall [1], you can often see 
> WinCairo bot failing to compile, and right now it's apparently having more 
> serious troubles and was put offline, so nobody working on other ports can 
> check if they introduce new build breaks for WinCairo.
I take the bot down occasionally and use it to verify fixes.  There were no 
serious troubles over the weekend, I just forgot to start it up again.  It 
should be working fine now.
> 
> The best option for you to proceed is to fix compilation error your self and 
> submit patches to bugzilla following usual procedure.
> 
> [1] https://build.webkit.org/waterfall
> 
> 
> -- 
> Regards,
> Konstantin
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> https://lists.webkit.org/mailman/listinfo/webkit-dev



smime.p7s
Description: S/MIME cryptographic signature
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-12 Thread Konstantin Tokarev


12.12.2016, 18:46, "Plamen Dimitrov" :
> Thank you Konstantin.
> I've generated an VS 2015 project and found out that a lot of files are 
> missing. For example:
> EventInterfaces.h EventTargetInterfaces.h HTMLNames.h 
> InternalSettingsGenerated.h JSCryptoKey.h JSCustomElementRegistry.h 
> JSDocument.h JSFontFace.h JSFontFaceSet.h JSIDBCursor.h 
> JSIDBCursorWithValue.h JSIDBIndex.h JSIDBRequest.h JSIDBTransaction.h 
> JSMediaStreamTrack.h JSMediaTrackSupportedConstraints.h JSNavigator.h 
> JSNode.h JSPerformanceEntry.h JSWebGLRenderingContext.h 
> JSWebGLRenderingContextBase.h MathMLNames.h SVGNames.h Can I generate these 
> files?

This files should be automatically generated during build process. Rules are 
defined in cmake files.

>
> On Mon, Dec 12, 2016 at 2:30 PM, Konstantin Tokarev  wrote:
>> 12.12.2016, 12:25, "Plamen Dimitrov" :
>>> Hi all, I am trying to build webkit wincairo 1) I've done 2, 3, 4, 5, 6, 7, 
>>> 8, 9,10 and 13 from this list: 
>>> https://webkit.org/webkit-on-windows/#installing-developer-tools 2) I've 
>>> installed Ruby 2.0.0-p648 and DevKit-mingw64 from here: 
>>> http://rubyinstaller.org/downloads/ 3) I've run "update-webkit"; 
>>> "update-webkit --wincairo"; "update-webkit-wincairo-libs" from VS2015 
>>> native tool command prompt. And when I've run "build-webkit --wincairo 
>>> --release" the build has failed with "C:\Program Files (x86)\Microsoft 
>>> Visual Studio 14.0\VC\INCLUDE\type_traits(1469): error C2672: 
>>> 'std::invoke': no matching overloaded function found" and "C:\Program Files 
>>> (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1469): error 
>>> C2893: Failed to specialize function template 'unknown-type 
>>> std::invoke(_Callable &&,_Types &&...)'" Have you ever seen it before? 
>>> Thank you in advance, Plamen.
>>> ,
>>
>> Hi,
>>
>> Unfortunately, it's quite possible that WinCairo does not build on some 
>> arbitrary trunk revision. If you watch waterfall [1], you can often see 
>> WinCairo bot failing to compile, and right now it's apparently having more 
>> serious troubles and was put offline, so nobody working on other ports can 
>> check if they introduce new build breaks for WinCairo.
>>
>> The best option for you to proceed is to fix compilation error your self and 
>> submit patches to bugzilla following usual procedure.
>>
>> [1] https://build.webkit.org/waterfall
>>
>> --
>> Regards,
>> Konstantin


-- 
Regards,
Konstantin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-12 Thread Plamen Dimitrov
Thank you Konstantin.
I've generated an VS 2015 project and found out that a lot of files are
missing. For example:
EventInterfaces.h EventTargetInterfaces.h HTMLNames.h
InternalSettingsGenerated.h JSCryptoKey.h JSCustomElementRegistry.h
JSDocument.h JSFontFace.h JSFontFaceSet.h JSIDBCursor.h
JSIDBCursorWithValue.h JSIDBIndex.h JSIDBRequest.h JSIDBTransaction.h
JSMediaStreamTrack.h JSMediaTrackSupportedConstraints.h JSNavigator.h
JSNode.h JSPerformanceEntry.h JSWebGLRenderingContext.h
JSWebGLRenderingContextBase.h MathMLNames.h SVGNames.h Can I generate these
files?

On Mon, Dec 12, 2016 at 2:30 PM, Konstantin Tokarev 
wrote:

>
>
> 12.12.2016, 12:25, "Plamen Dimitrov" :
> > Hi all, I am trying to build webkit wincairo 1) I've done 2, 3, 4, 5, 6,
> 7, 8, 9,10 and 13 from this list: https://webkit.org/webkit-on-
> windows/#installing-developer-tools 2) I've installed Ruby 2.0.0-p648 and
> DevKit-mingw64 from here: http://rubyinstaller.org/downloads/ 3) I've run
> "update-webkit"; "update-webkit --wincairo"; "update-webkit-wincairo-libs"
> from VS2015 native tool command prompt. And when I've run "build-webkit
> --wincairo --release" the build has failed with "C:\Program Files
> (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1469): error
> C2672: 'std::invoke': no matching overloaded function found" and
> "C:\Program Files (x86)\Microsoft Visual Studio 
> 14.0\VC\INCLUDE\type_traits(1469):
> error C2893: Failed to specialize function template 'unknown-type
> std::invoke(_Callable &&,_Types &&...)'" Have you ever seen it before?
> Thank you in advance, Plamen.
> > ,
>
>
> Hi,
>
> Unfortunately, it's quite possible that WinCairo does not build on some
> arbitrary trunk revision. If you watch waterfall [1], you can often see
> WinCairo bot failing to compile, and right now it's apparently having more
> serious troubles and was put offline, so nobody working on other ports can
> check if they introduce new build breaks for WinCairo.
>
> The best option for you to proceed is to fix compilation error your self
> and submit patches to bugzilla following usual procedure.
>
> [1] https://build.webkit.org/waterfall
>
>
> --
> Regards,
> Konstantin
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] WebKit build failed

2016-12-12 Thread Konstantin Tokarev


12.12.2016, 12:25, "Plamen Dimitrov" :
> Hi all, I am trying to build webkit wincairo 1) I've done 2, 3, 4, 5, 6, 7, 
> 8, 9,10 and 13 from this list: 
> https://webkit.org/webkit-on-windows/#installing-developer-tools 2) I've 
> installed Ruby 2.0.0-p648 and DevKit-mingw64 from here: 
> http://rubyinstaller.org/downloads/ 3) I've run "update-webkit"; 
> "update-webkit --wincairo"; "update-webkit-wincairo-libs" from VS2015 native 
> tool command prompt. And when I've run "build-webkit --wincairo --release" 
> the build has failed with "C:\Program Files (x86)\Microsoft Visual Studio 
> 14.0\VC\INCLUDE\type_traits(1469): error C2672: 'std::invoke': no matching 
> overloaded function found" and "C:\Program Files (x86)\Microsoft Visual 
> Studio 14.0\VC\INCLUDE\type_traits(1469): error C2893: Failed to specialize 
> function template 'unknown-type std::invoke(_Callable &&,_Types &&...)'" Have 
> you ever seen it before? Thank you in advance, Plamen.
> ,


Hi,

Unfortunately, it's quite possible that WinCairo does not build on some 
arbitrary trunk revision. If you watch waterfall [1], you can often see 
WinCairo bot failing to compile, and right now it's apparently having more 
serious troubles and was put offline, so nobody working on other ports can 
check if they introduce new build breaks for WinCairo.

The best option for you to proceed is to fix compilation error your self and 
submit patches to bugzilla following usual procedure.

[1] https://build.webkit.org/waterfall


-- 
Regards,
Konstantin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] WebKit build failed

2016-12-12 Thread Plamen Dimitrov
Hi all, I am trying to build webkit wincairo 1) I've done 2, 3, 4, 5, 6, 7,
8, 9,10 and 13 from this list:
https://webkit.org/webkit-on-windows/#installing-developer-tools 2) I've
installed Ruby 2.0.0-p648 and DevKit-mingw64 from here:
http://rubyinstaller.org/downloads/ 3) I've run "update-webkit";
"update-webkit --wincairo"; "update-webkit-wincairo-libs" from VS2015
native tool command prompt. And when I've run "build-webkit --wincairo
--release" the build has failed with "C:\Program Files (x86)\Microsoft
Visual Studio 14.0\VC\INCLUDE\type_traits(1469): error C2672:
'std::invoke': no matching overloaded function found" and "C:\Program Files
(x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\type_traits(1469): error
C2893: Failed to specialize function template 'unknown-type
std::invoke(_Callable
&&,_Types &&...)'" Have you ever seen it before? Thank you in advance,
Plamen.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] webkit build error

2010-05-18 Thread Darin Adler
The mailing list for questions about how to build WebKit is webkit-help, not 
webkit-dev. Please see .

-- Darin

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


[webkit-dev] webkit build error

2010-05-18 Thread jason
hello,all:
  Execus me,I am so sorry. who can help me?
  when I build the webkit, there are some error occurs in my project!
why?
The errors as follows:
 
 
10>Linking...
10>LINK : warning LNK4044: unrecognized option '/dynamicbase'; ignored
10>msvcprt.lib(MSVCP80.dll) : error LNK2005: "public: static unsigned int __cdec
l std::numeric_limits::max(void)" 
(?...@?$numeric_limits@i...@std@@SA
IXZ) already defined in WebCore_debug.lib(WCDataObject.obj)
10>   Creating library D:\Android\webkit\WebKit-r59204\WebKitBuild\lib\WebKit.li
b and object D:\Android\webkit\WebKit-r59204\WebKitBuild\lib\WebKit.exp
10>WebCore_debug.lib(RenderLayer.obj) : error LNK2019: unresolved external symbo
l "__declspec(dllimport) public: void __thiscall std::exception::_Raise(void)con
st " (__imp_?_ra...@exception@std@@QBEXXZ) referenced in function "struct std::p
air __cdecl std::get_temporary_buffer(int)" (??$get_temporary_buf...@pavrenderlayer@WebCore@@@
std@@ya?au?$p...@papavrenderlayer@WebCore@@h...@0@h...@z)
10>WebCore_debug.lib(Gradient.obj) : error LNK2001: unresolved external symbol "
__declspec(dllimport) public: void __thiscall std::exception::_Raise(void)const
" (__imp_?_ra...@exception@std@@QBEXXZ)
10>WebCore_debug.lib(CSSFontSelector.obj) : error LNK2001: unresolved external s
ymbol "__declspec(dllimport) public: void __thiscall std::exception::_Raise(void
)const " (__imp_?_ra...@exception@std@@QBEXXZ)
10>WebCore_debug.lib(CSSGradientValue.obj) : error LNK2001: unresolved external
symbol "__declspec(dllimport) public: void __thiscall std::exception::_Raise(voi
d)const " (__imp_?_ra...@exception@std@@QBEXXZ)
10>WebCore_debug.lib(RenderLayer.obj) : error LNK2019: unresolved external symbo
l "__declspec(dllimport) public: __thiscall std::exception::exception(char const
 *,int)" (__imp_??0except...@std@@q...@pbdh@Z) referenced in function "public: 
__
thiscall std::bad_alloc::bad_alloc(char const *)" (??0bad_al...@std@@q...@pbd@Z)
10>WebCore_debug.lib(Gradient.obj) : error LNK2001: unresolved external symbol "
__declspec(dllimport) public: __thiscall std::exception::exception(char const *,
int)" (__imp_??0except...@std@@q...@pbdh@Z)
10>WebCore_debug.lib(CSSFontSelector.obj) : error LNK2001: unresolved external s
ymbol "__declspec(dllimport) public: __thiscall std::exception::exception(char c
onst *,int)" (__imp_??0except...@std@@q...@pbdh@Z)
10>WebCore_debug.lib(CSSGradientValue.obj) : error LNK2001: unresolved external
symbol "__declspec(dllimport) public: __thiscall std::exception::exception(char
const *,int)" (__imp_??0except...@std@@q...@pbdh@Z)
10>WebCore_debug.lib(RenderLayer.obj) : error LNK2019: unresolved external symbo
l "__declspec(dllimport) void __cdecl std::_Throw(class std::exception const &)"
 (__imp_?_th...@std@@yaxabvexcept...@1@@Z) referenced in function "protected: vi
rtual void __thiscall std::bad_alloc::_Doraise(void)const " (?_dora...@bad_alloc
@std@@MBEXXZ)
10>WebCore_debug.lib(Gradient.obj) : error LNK2001: unresolved external symbol "
__declspec(dllimport) void __cdecl std::_Throw(class std::exception const &)" (_
_imp_?_th...@std@@yaxabvexcept...@1@@Z)
10>WebCore_debug.lib(CSSFontSelector.obj) : error LNK2001: unresolved external s
ymbol "__declspec(dllimport) void __cdecl std::_Throw(class std::exception const
 &)" (__imp_?_th...@std@@yaxabvexcept...@1@@Z)
10>WebCore_debug.lib(CSSGradientValue.obj) : error LNK2001: unresolved external
symbol "__declspec(dllimport) void __cdecl std::_Throw(class std::exception cons
t &)" (__imp_?_th...@std@@yaxabvexcept...@1@@Z)
10>D:\Android\webkit\WebKit-r59204\WebKitBuild\bin\WebKit.dll : fatal error LNK1
120: 3 unresolved externals
10>Project : warning PRJ0018 : The following environment variables were not foun
d:
10>$(PRODUCTION)
10>$(DXSDK_DIR)
10>Build log was saved at "file://D:\Android\webkit\WebKit-r59204\WebKitBuild\ob
j\WebKit\Debug\BuildLog.htm"
10>WebKit - 14 error(s), 31 warning(s)
11>-- Build started: Project: FindSafari, Configuration: all Win32 --
11>Compiling...
11>### COMPILING 1 FILES USING AT MOST 2 PARALLEL INSTANCES OF cl.exe ##
#
11>cl : Command line warning D9042 : invalid value '6011' for '/wd'; assuming '4
999'; Code Analysis warnings are not available in this edition of the compiler
11>cl : Command line warning D9042 : invalid value '6031' for '/wd'; assuming '4
999'; Code Analysis warnings are not available in this edition of the compiler
11>cl : Command line warning D9042 : invalid value '6211' for '/wd'; assuming '4
999'; Code Analysis warnings are not available in this edition of the compiler
11>cl : Command line warning D9042 : invalid value '6246' for '/wd'; assuming '4
999'; Code Analysis warnings are not available in this edition of the compiler
11>cl : Command line warning D9042 : invalid value '6255' for '/wd'; assuming '4
999'; Code Analysis warnings are not available in this edition of the compiler
11>cl : Command line warning D9042 : invalid value '6387' for '/wd'; assuming '4
999'; Code Analysis warni

Re: [webkit-dev] Webkit Build Error on Windows (Urgent)

2009-07-22 Thread Adam Treat
This thread is not appropriate for webkit-dev.  There is a new mailing list - 
webkit-help - which has been setup for threads of this nature.  Please use the 
other mailing list and keep webkit-dev focused on webkit development.

http://lists.webkit.org/mailman/listinfo.cgi/webkit-help

Cheers,
Adam

On Wednesday 22 July 2009 07:45:52 am mjbh wrote:
> Hi
>
> Thanx Niilesh.  "Cannot find file: \usr\bin\WebKit\WebKit.pro" Error
> occurred due to qmake not able
> understand the cygwin style path. I have modified webkitdir.pm to generate
> windows style path.
> then I got the below message.
>
> bash-3.2$ WebKitTools/Scripts/build-webkit --cairo-win32 --debug
> unix DIR: '/usr/bin/WebKit'
> WIN DIR: 'D:\cygwin\bin\WebKit'
> Qmakebin Value: 'qmake'
> buildArgs Value: '-r
> OUTPUT_DIR=D:\cygwin\bin\WebKit\WebKitBuild/Debug_Cairo D:\
> cygwin\bin\WebKit\WebKit.pro CONFIG-=release CONFIG+=debug'
> Calling 'qmake -r OUTPUT_DIR=D:\cygwin\bin\WebKit\WebKitBuild/Debug_Cairo
> D:\cyg
> win\bin\WebKit\WebKit.pro CONFIG-=release CONFIG+=debug' in
> D:\cygwin\bin\WebKit
> \WebKitBuild/Debug_Cairo
>
> Reading D:/cygwin/bin/WebKit/WebCore/WebCore.pro
> [D:/cygwin/bin/WebKit/WebKitBui
> ld/Debug_Cairo//WebCore]
> c:\Qt\4.4.3\bin\rcc.exe: File does not exist
> '..\..\..\WebCore\inspector\front-e
> nd\WebKit.qrc'
> c:\Qt\4.4.3\bin\rcc.exe: File does not exist '..\..\..\WebCore\WebCore.qrc'
> c:\Qt\4.4.3\bin\rcc.exe: File does not exist
> '..\..\..\WebCore\inspector\front-e
> nd\WebKit.qrc'
> c:\Qt\4.4.3\bin\rcc.exe: File does not exist '..\..\..\WebCore\WebCore.qrc'
> Reading D:/cygwin/bin/WebKit/JavaScriptCore/jsc.pro
> [D:/cygwin/bin/WebKit/WebKit
> Build/Debug_Cairo//JavaScriptCore]
> Reading D:/cygwin/bin/WebKit/WebKit/qt/QtLauncher/QtLauncher.pro
> [D:/cygwin/bin/
> WebKit/WebKitBuild/Debug_Cairo//WebKit/qt/QtLauncher]
> Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/tests.pro
> [D:/cygwin/bin/WebKit/Web
> KitBuild/Debug_Cairo//WebKit/qt/tests]
>  Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebframe/qwebframe.pro
> [D:/cygwin
> /bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebframe]
>  Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebpage/qwebpage.pro
> [D:/cygwin/b
> in/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebpage]
>  Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebelement/qwebelement.pro
> [D:/cy
> gwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebelement]
>  Reading
> D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebhistoryinterface/qwebhistoryin
> terface.pro
> [D:/cygwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebh
> istoryinterface]
>  Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebview/qwebview.pro
> [D:/cygwin/b
> in/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebview]
>  Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebhistory/qwebhistory.pro
> [D:/cy
> gwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebhistory]
>  Reading
> D:/cygwin/bin/WebKit/WebKit/qt/tests/benchmarks/painting/tst_painting.p
> ro
> [D:/cygwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//benchmarks/p
>ai nting]
>  Reading
> D:/cygwin/bin/WebKit/WebKit/qt/tests/benchmarks/loading/tst_loading.pro
>
> [D:/cygwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//benchmarks/l
>oadi ng]
>
> ===
>  WebKit is now built. To run QtLauncher with this newly-built
>  code, use the "WebKitTools/Scripts/run-launcher" script.
>
>  NOTE: WebKit has been built with SVG support enabled.
>  QtLauncher will have SVG viewing capabilities.
>  Your build supports the following (optional) SVG features:
>   * Basic SVG animation.
>   * SVG as image.
>   * SVG fonts.
>   * SVG foreign object.
>   * SVG  support.
> ===
>
> but I when invoke the run-launcher, I am getting the below error:
>
> bash-3.2$ WebKitTools/Scripts/run-launcher
> Starting webkit launcher, running against the built WebKit in
> D:/cygwin/bin/WebK
> it/WebKitBuild/Release/lib...
> Can't exec "D:/cygwin/bin/WebKit/WebKitBuild/Release/bin/QtLauncher": No
> such fi
> le or directory at WebKitTools/Scripts/run-launcher line 68.
> Died at WebKitTools/Scripts/run-launcher line 68.
> bash-3.2$
>
> If I tried to build through the Qt command prompt using nmake, I am getting
> the below Error:
> ( I am using Qt 4.4.3 )
>
> D:\cygwin\bin\WebKit\WebKitBuild\Debug_Cairo\WebCore>nmake -f
> Makefile.Debug
>
> Microsoft (R) Program Maintenance Utility Version 9.00.30729.01
> Copyright (C) Microsoft Corporation.  All rights reserved.
>
> perl D:/cygwin/bin/WebKit/JavaScriptCore/pcre/dftables
> generated\debug\c
> hartables.c --preprocessor="cl /E"
> Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for
> 80x86
> Copyright (C) Microsoft Corporation.  All rights reserved.
>
> cl : Command line warning D9002 : ignoring unknown option
> '/tmp/dftables-FjM3m7_
> 1.in'
> cl : Command line error D8003 : missing source filename

Re: [webkit-dev] Webkit Build Error on Windows (Urgent)

2009-07-22 Thread mjbh

Hi

Thanx Niilesh.  "Cannot find file: \usr\bin\WebKit\WebKit.pro" Error
occurred due to qmake not able 
understand the cygwin style path. I have modified webkitdir.pm to generate
windows style path.
then I got the below message.

bash-3.2$ WebKitTools/Scripts/build-webkit --cairo-win32 --debug
unix DIR: '/usr/bin/WebKit'
WIN DIR: 'D:\cygwin\bin\WebKit'
Qmakebin Value: 'qmake'
buildArgs Value: '-r OUTPUT_DIR=D:\cygwin\bin\WebKit\WebKitBuild/Debug_Cairo
D:\
cygwin\bin\WebKit\WebKit.pro CONFIG-=release CONFIG+=debug'
Calling 'qmake -r OUTPUT_DIR=D:\cygwin\bin\WebKit\WebKitBuild/Debug_Cairo
D:\cyg
win\bin\WebKit\WebKit.pro CONFIG-=release CONFIG+=debug' in
D:\cygwin\bin\WebKit
\WebKitBuild/Debug_Cairo

Reading D:/cygwin/bin/WebKit/WebCore/WebCore.pro
[D:/cygwin/bin/WebKit/WebKitBui
ld/Debug_Cairo//WebCore]
c:\Qt\4.4.3\bin\rcc.exe: File does not exist
'..\..\..\WebCore\inspector\front-e
nd\WebKit.qrc'
c:\Qt\4.4.3\bin\rcc.exe: File does not exist '..\..\..\WebCore\WebCore.qrc'
c:\Qt\4.4.3\bin\rcc.exe: File does not exist
'..\..\..\WebCore\inspector\front-e
nd\WebKit.qrc'
c:\Qt\4.4.3\bin\rcc.exe: File does not exist '..\..\..\WebCore\WebCore.qrc'
Reading D:/cygwin/bin/WebKit/JavaScriptCore/jsc.pro
[D:/cygwin/bin/WebKit/WebKit
Build/Debug_Cairo//JavaScriptCore]
Reading D:/cygwin/bin/WebKit/WebKit/qt/QtLauncher/QtLauncher.pro
[D:/cygwin/bin/
WebKit/WebKitBuild/Debug_Cairo//WebKit/qt/QtLauncher]
Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/tests.pro
[D:/cygwin/bin/WebKit/Web
KitBuild/Debug_Cairo//WebKit/qt/tests]
 Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebframe/qwebframe.pro
[D:/cygwin
/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebframe]
 Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebpage/qwebpage.pro
[D:/cygwin/b
in/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebpage]
 Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebelement/qwebelement.pro
[D:/cy
gwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebelement]
 Reading
D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebhistoryinterface/qwebhistoryin
terface.pro
[D:/cygwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebh
istoryinterface]
 Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebview/qwebview.pro
[D:/cygwin/b
in/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebview]
 Reading D:/cygwin/bin/WebKit/WebKit/qt/tests/qwebhistory/qwebhistory.pro
[D:/cy
gwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//qwebhistory]
 Reading
D:/cygwin/bin/WebKit/WebKit/qt/tests/benchmarks/painting/tst_painting.p
ro
[D:/cygwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//benchmarks/pai
nting]
 Reading
D:/cygwin/bin/WebKit/WebKit/qt/tests/benchmarks/loading/tst_loading.pro

[D:/cygwin/bin/WebKit/WebKitBuild/Debug_Cairo/WebKit/qt/tests//benchmarks/loadi
ng]

===
 WebKit is now built. To run QtLauncher with this newly-built
 code, use the "WebKitTools/Scripts/run-launcher" script.

 NOTE: WebKit has been built with SVG support enabled.
 QtLauncher will have SVG viewing capabilities.
 Your build supports the following (optional) SVG features:
  * Basic SVG animation.
  * SVG as image.
  * SVG fonts.
  * SVG foreign object.
  * SVG  support.
===

but I when invoke the run-launcher, I am getting the below error:

bash-3.2$ WebKitTools/Scripts/run-launcher
Starting webkit launcher, running against the built WebKit in
D:/cygwin/bin/WebK
it/WebKitBuild/Release/lib...
Can't exec "D:/cygwin/bin/WebKit/WebKitBuild/Release/bin/QtLauncher": No
such fi
le or directory at WebKitTools/Scripts/run-launcher line 68.
Died at WebKitTools/Scripts/run-launcher line 68.
bash-3.2$

If I tried to build through the Qt command prompt using nmake, I am getting
the below Error:
( I am using Qt 4.4.3 )

D:\cygwin\bin\WebKit\WebKitBuild\Debug_Cairo\WebCore>nmake -f Makefile.Debug

Microsoft (R) Program Maintenance Utility Version 9.00.30729.01
Copyright (C) Microsoft Corporation.  All rights reserved.

perl D:/cygwin/bin/WebKit/JavaScriptCore/pcre/dftables
generated\debug\c
hartables.c --preprocessor="cl /E"
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for
80x86
Copyright (C) Microsoft Corporation.  All rights reserved.

cl : Command line warning D9002 : ignoring unknown option
'/tmp/dftables-FjM3m7_
1.in'
cl : Command line error D8003 : missing source filename
Use of uninitialized value $pcre_internal{"tables_length"} in printf at
D:/cygwi
n/bin/WebKit/JavaScriptCore/pcre/dftables line 83.
Use of uninitialized value $pcre_internal{"lcc_offset"} in numeric ne (!=)
at D:
/cygwin/bin/WebKit/JavaScriptCore/pcre/dftables line 90.
Use of uninitialized value $pcre_internal{"fcc_offset"} in numeric ne (!=)
at D:
/cygwin/bin/WebKit/JavaScriptCore/pcre/dftables line 108.
fcc_offset != 128 at D:/cygwin/bin/WebKit/JavaScriptCore/pcre/dftables line
109.

NMAKE : fatal error U1077: 'D:\cygwin\bin\perl.EXE' : return code '0x2'
Stop.

plea

Re: [webkit-dev] Webkit Build Error on Windows (Urgent)

2009-07-22 Thread Nilesh Patil
Hi

>From errors you are getting , seems that you cygwin is not
installed/configured correctly. You need to have required dependancies
in cygwin shell.

Thanks & Regards
Niilesh

On Wed, Jul 22, 2009 at 2:05 PM, mjbh wrote:
>
> Hi,
>  I have tried to build Webkit using cygwin. I have followed the
> documentation and post details in the forum.
> 1. Installed the cygwin.
> 2. Installed QuickTime SDK
> 3. Checkout the latest webkit code from trunk (in cgywin)
> 4. set the ENV variable WEBKITLIBRARIESDIR & WEBKITOUTPUTDIR
> 5. Ran : WebKitTools/Scripts/update-webkit (succeed)
> 6. When try execute the WebKitTools/Scripts/update-webkit-support-libs and
> WebKitTools/Scripts/update-webkit-auxiliary-libs, I am getting the following
> Errors.
>
> bash-3.2$ WebKitTools/Scripts/update-webkit-support-libs
> Subroutine main::tmpnam redefined at
> /usr/bin/WebKit/WebKitTools/Scripts/webkitd
> irs.pm line 33
> Subroutine main::tmpfile redefined at
> /usr/bin/WebKit/WebKitTools/Scripts/webkit
> dirs.pm line 33
> Checking mod-date of WebKitSupportLibrary.zip...
> checkdir:  cannot create extraction directory: /tmp/webkitlibsJu7vqBh
> Couldn't unzip WebKitSupportLibrary.zip. at
> WebKitTools/Scripts/update-webkit-su
> pport-libs line 79.
> bash-3.2$ WebKitTools/Scripts/update-webkit-auxiliary-libs
> Subroutine main::tmpnam redefined at
> /usr/bin/WebKit/WebKitTools/Scripts/webkitd
> irs.pm line 33
> Subroutine main::tmpfile redefined at
> /usr/bin/WebKit/WebKitTools/Scripts/webkit
> dirs.pm line 33
> Checking Last-Modified date of WebKitAuxiliaryLibrary.zip...
> Downloading WebKitAuxiliaryLibrary.zip...
>
>  % Total    % Received % Xferd  Average Speed   Time    Time     Time
> Current
>                                 Dload  Upload   Total   Spent    Left
> Speed
> 100 1077k  100 1077k    0     0   100k      0  0:00:10  0:00:10 --:--:--
> 152k
> checkdir:  cannot create extraction directory: /tmp/webkitlibsz0P39i2
> Couldn't unzip WebKitAuxiliaryLibrary.zip. at
> WebKitTools/Scripts/update-webkit-
> auxiliary-libs line 82.
> bash-3.2$
>
> 7. When try execute "WebKit/WebKitTools/Scripts/build-webkit --cairo-win32
> --debug"
> I am getting the following different errors for each time.
>
> bash-3.2$ pwd
> /usr/bin/WebKit
> bash-3.2$ WebKitTools/Scripts/build-webkit --cairo-win32 --debug
> Calling 'qmake -r OUTPUT_DIR=D:\cygwin\bin\WebKit\WebKitBuild/Debug_Cairo
> /usr/b
> in/WebKit/WebKit.pro CONFIG-=release CONFIG+=debug' in
> D:\cygwin\bin\WebKit\WebK
> itBuild/Debug_Cairo
>
> Cannot find file: \usr\bin\WebKit\WebKit.pro.
> Failed to setup build environment using qmake!
> bash-3.2$ WebKitTools/Scripts/build-webkit --cairo-win32 --debug
> ERROR: flex missing but required to build WebKit.
> bash-3.2$
>
> I have followed the instruction from the below links:
>
> "http://webkit.org/building/tools.html
> http://webkit.org/building/checkout.html
> http://webkit.org/building/build.html
> http://www.nabble.com/My-Windows-build-notes-td19964559.html
> http://climbing-the-hill.blogspot.com/2009/05/compiling-webkit-on-windows.html";
>
> I have done lot of efforts, but none of them proceeded the successfully.
> could anybody please help me to come out from this issue.
>
> Regards,
> Jaffar
> --
> View this message in context: 
> http://www.nabble.com/Webkit-Build-Error-on-Windows-%28Urgent%29-tp24602132p24602132.html
> Sent from the Webkit mailing list archive at Nabble.com.
>
> ___
> 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] Webkit Build Error on Windows (Urgent)

2009-07-22 Thread mjbh

Hi,
 I have tried to build Webkit using cygwin. I have followed the
documentation and post details in the forum.
1. Installed the cygwin.
2. Installed QuickTime SDK
3. Checkout the latest webkit code from trunk (in cgywin)
4. set the ENV variable WEBKITLIBRARIESDIR & WEBKITOUTPUTDIR
5. Ran : WebKitTools/Scripts/update-webkit (succeed)
6. When try execute the WebKitTools/Scripts/update-webkit-support-libs and
WebKitTools/Scripts/update-webkit-auxiliary-libs, I am getting the following
Errors.

bash-3.2$ WebKitTools/Scripts/update-webkit-support-libs
Subroutine main::tmpnam redefined at
/usr/bin/WebKit/WebKitTools/Scripts/webkitd
irs.pm line 33
Subroutine main::tmpfile redefined at
/usr/bin/WebKit/WebKitTools/Scripts/webkit
dirs.pm line 33
Checking mod-date of WebKitSupportLibrary.zip...
checkdir:  cannot create extraction directory: /tmp/webkitlibsJu7vqBh
Couldn't unzip WebKitSupportLibrary.zip. at
WebKitTools/Scripts/update-webkit-su
pport-libs line 79.
bash-3.2$ WebKitTools/Scripts/update-webkit-auxiliary-libs
Subroutine main::tmpnam redefined at
/usr/bin/WebKit/WebKitTools/Scripts/webkitd
irs.pm line 33
Subroutine main::tmpfile redefined at
/usr/bin/WebKit/WebKitTools/Scripts/webkit
dirs.pm line 33
Checking Last-Modified date of WebKitAuxiliaryLibrary.zip...
Downloading WebKitAuxiliaryLibrary.zip...

  % Total% Received % Xferd  Average Speed   TimeTime Time 
Current
 Dload  Upload   Total   SpentLeft 
Speed
100 1077k  100 1077k0 0   100k  0  0:00:10  0:00:10 --:--:-- 
152k
checkdir:  cannot create extraction directory: /tmp/webkitlibsz0P39i2
Couldn't unzip WebKitAuxiliaryLibrary.zip. at
WebKitTools/Scripts/update-webkit-
auxiliary-libs line 82.
bash-3.2$

7. When try execute "WebKit/WebKitTools/Scripts/build-webkit --cairo-win32
--debug"
I am getting the following different errors for each time.

bash-3.2$ pwd
/usr/bin/WebKit
bash-3.2$ WebKitTools/Scripts/build-webkit --cairo-win32 --debug
Calling 'qmake -r OUTPUT_DIR=D:\cygwin\bin\WebKit\WebKitBuild/Debug_Cairo
/usr/b
in/WebKit/WebKit.pro CONFIG-=release CONFIG+=debug' in
D:\cygwin\bin\WebKit\WebK
itBuild/Debug_Cairo

Cannot find file: \usr\bin\WebKit\WebKit.pro.
Failed to setup build environment using qmake!
bash-3.2$ WebKitTools/Scripts/build-webkit --cairo-win32 --debug
ERROR: flex missing but required to build WebKit.
bash-3.2$

I have followed the instruction from the below links:

"http://webkit.org/building/tools.html
http://webkit.org/building/checkout.html
http://webkit.org/building/build.html
http://www.nabble.com/My-Windows-build-notes-td19964559.html
http://climbing-the-hill.blogspot.com/2009/05/compiling-webkit-on-windows.html";

I have done lot of efforts, but none of them proceeded the successfully.
could anybody please help me to come out from this issue.

Regards,
Jaffar
-- 
View this message in context: 
http://www.nabble.com/Webkit-Build-Error-on-Windows-%28Urgent%29-tp24602132p24602132.html
Sent from the Webkit mailing list archive at Nabble.com.

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


Re: [webkit-dev] WebKit-Build

2009-05-29 Thread F S
Hi Roland,
 
I did the checkout from cygwin, I do not think you can do it from DOS command.
 
I tried one thing else and that seems to have done the trick.  Reading the 
documents over and over I noticed they say copy the webkit to 
"cygn\home\\Webkit.
In my build I did not have such structure,  so I created a "Home\username" node 
under cygwin and copied Webkit there and tried to rebuild.  It says the build 
is successful, I try to run it now :)
 
Regarding the bug fix.  When I checked out the code it gave me the 
choice between Windows Text format or Unix format, I chose Windows Text format 
(Should have stayed with default). I think that messed things up.  Below is the 
result of the build.
 
WebKit is now built. To run Safari with this newly-built
code, use the "WebKitTools/Scripts/run-safari" script.
NOTE: WebKit has been built with SVG support enabled.
Safari will have SVG viewing capabilities.
Your build supports the following (optional) SVG features:
 * Basic SVG animation.
 * SVG as image.
 * SVG fonts.
 * SVG foreign object.
 * SVG  support.
 
The build created the following directories:
C:\cygwin\home\username\WebKit\WebKitBuild\obj\InterfacesGenerated
C:\cygwin\home\username\WebKit\WebKitBuild\obj\JavaScriptCore
C:\cygwin\home\username\WebKit\WebKitBuild\obj\JavaScriptCoreGenerated
C:\cygwin\home\username\WebKit\WebKitBuild\obj\record-memory-win
C:\cygwin\home\username\WebKit\WebKitBuild\obj\WebCore
C:\cygwin\home\username\WebKit\WebKitBuild\obj\WebKit
 
Is this all it should be?
 
Now I tried to run Safari from cygwin and I get notification below:
 
$ run-safari
    1 file(s) copied.
'FindSafari.exe' is not recognized as an internal or external command,
operable program or batch file.
Setting environment for using Microsoft Visual Studio 2005 x86 tools.
 
When I search for FindSafari.exe it is not there.
 
Thanks for all the help.
 
 
Regards,
Fred 

--- On Fri, 5/29/09, Roland Steiner  wrote:


From: Roland Steiner 
Subject: Re: [webkit-dev] WebKit-Build
To: "F S" 
Cc: webkit-dev@lists.webkit.org
Date: Friday, May 29, 2009, 12:56 PM


Hi Fred,

Could it be that you did the checkout from under the Windows command line 
rather than from within CygWin? This messes it up, at least that was the cause 
for a similar issue I encountered. Everything worked fine when I re-did the 
checkout under CygWin. It's also the first time I see the link you posted - 
that patch shouldn't be necessary AFAIK. 
Also (someone correct me if I'm wrong), setting any windows environment 
variable also shouldn't be necessary, provided you set up the include paths in 
Visual Studio correctly. (The only environment variable you need is 
WEBKIT_TESTFONTS if you run layout tests on Windows - a whole 'nother can of 
worms).

The errors you list below are auto-generated files. It seems the scripts that 
generate them haven't been run, probably due to some previous error (could be 
linked to the above issue). 


Cheers,

Roland


On Fri, May 29, 2009 at 12:36 PM, F S  wrote:






Hello,
 
Sorry, my previous email was sent at the middle, do not know why.

 
I have made some improvements that I like to share the findings, however it 
still does not build.
 
Things I did:
-  Added Environment Variables for INCLUDE, PATH and LIB to Windows environment 
to match VC++ setting
-  Reading through google find out needed to change 
"WebKit\WebCore\css\makevalues.pl" file to fix a bug.
(http://lists.macosforge.org/pipermail/webkit-unassigned/2009-May/109430.html)
- Now the WebCore projects compiles with only 32 errors as opposed to 1000+ 
errors.  
 
Below is the files it can not find.  I have run the webkit-update.  Do you know 
why these files are missing and where can I get them?

MoveSelectionCommand.cpp
c:\cygwin\usr\webkit\webcore\svg\SVGElement.h(29) : fatal error C1083: Cannot 
open include file: 'SVGNames.h': No such file or directory
WMLNoopElement.cpp
CSSStyleDeclaration.cpp
Plugin.cpp
..\editing\DeleteButtonController.cpp(33) : fatal error C1083: Cannot open 
include file: 'CSSValueKeywords.h': No such file or directory
HTMLInterchange.cpp
CrossThreadCopier.cpp
..\bindings\js\JSNodeCustom.cpp(61) : fatal error C1083: Cannot open include 
file: 'JSSVGElementWrapperFactory.h': No such file or directory
SQLResultSetRowList.cpp
XMLNames.cpp
c1xx : fatal error C1083: Cannot open source file: 
'..\..\webkitbuild\obj\webcore\derivedsources\XMLNames.cpp': No such file or 
directory
JSElementCustom.cpp
..\bindings\js\JSElementCustom.cpp(44) : fatal error C1083: Cannot open include 
file: 'JSSVGElementWrapperFactory.h': No such file or directory
SVGElementFactory.cpp
c1xx : fatal error C1083: Cannot open source file: 
'..\..\webkitbuild\obj\webcore\derivedsources\SVGElementFactory.cpp': No such 
file or directory
JSSVGElementWrapperFactory.cpp
c1xx : fatal error C1083: Cannot open so

Re: [webkit-dev] WebKit-Build

2009-05-29 Thread Roland Steiner
Hi Fred,

Could it be that you did the checkout from under the Windows command line
rather than from within CygWin? This messes it up, at least that was the
cause for a similar issue I encountered. Everything worked fine when I
re-did the checkout under CygWin. It's also the first time I see the link
you posted - that patch shouldn't be necessary AFAIK.
Also (someone correct me if I'm wrong), setting any windows environment
variable also shouldn't be necessary, provided you set up the include paths
in Visual Studio correctly. (The only environment variable you need is
WEBKIT_TESTFONTS if you run layout tests on Windows - a whole 'nother can of
worms).

The errors you list below are auto-generated files. It seems the scripts
that generate them haven't been run, probably due to some previous error
(could be linked to the above issue).


Cheers,

Roland

On Fri, May 29, 2009 at 12:36 PM, F S  wrote:

> Hello,
>
> Sorry, my previous email was sent at the middle, do not know why.
>
> I have made some improvements that I like to share the findings, however it
> still does not build.
>
> Things I did:
> -  Added Environment Variables for INCLUDE, PATH and LIB to Windows
> environment to match VC++ setting
> -  Reading through google find out needed to change
> "WebKit\WebCore\css\makevalues.pl" file to fix a bug.
> (
> http://lists.macosforge.org/pipermail/webkit-unassigned/2009-May/109430.html
> )
> - Now the WebCore projects compiles with only 32 errors as opposed to 1000+
> errors.
>
> Below is the files it can not find.  I have run the webkit-update.  Do you
> know why these files are missing and where can I get them?
>
> MoveSelectionCommand.cpp
> c:\cygwin\usr\webkit\webcore\svg\SVGElement.h(29) : fatal error C1083:
> Cannot open include file: 'SVGNames.h': No such file or directory
> WMLNoopElement.cpp
> CSSStyleDeclaration.cpp
> Plugin.cpp
> ..\editing\DeleteButtonController.cpp(33) : fatal error C1083: Cannot open
> include file: 'CSSValueKeywords.h': No such file or directory
> HTMLInterchange.cpp
> CrossThreadCopier.cpp
> ..\bindings\js\JSNodeCustom.cpp(61) : fatal error C1083: Cannot open
> include file: 'JSSVGElementWrapperFactory.h': No such file or directory
> SQLResultSetRowList.cpp
> XMLNames.cpp
> c1xx : fatal error C1083: Cannot open source file:
> '..\..\webkitbuild\obj\webcore\derivedsources\XMLNames.cpp': No such file or
> directory
> JSElementCustom.cpp
> ..\bindings\js\JSElementCustom.cpp(44) : fatal error C1083: Cannot open
> include file: 'JSSVGElementWrapperFactory.h': No such file or directory
> SVGElementFactory.cpp
> c1xx : fatal error C1083: Cannot open source file:
> '..\..\webkitbuild\obj\webcore\derivedsources\SVGElementFactory.cpp': No
> such file or directory
> JSSVGElementWrapperFactory.cpp
> c1xx : fatal error C1083: Cannot open source file:
> '..\..\webkitbuild\obj\webcore\derivedsources\JSSVGElementWrapperFactory.cpp':
> No such file or directory
> XLinkNames.cpp
> c1xx : fatal error C1083: Cannot open source file:
> '..\..\webkitbuild\obj\webcore\derivedsources\XLinkNames.cpp': No such file
> or directory
> WMLElementFactory.cpp
> c1xx : fatal error C1083: Cannot open source file:
> '..\..\webkitbuild\obj\webcore\derivedsources\WMLElementFactory.cpp': No
> such file or directory
>
> *Thanks and regards,*
> *Fred
> *
>
>
> --- On *Fri, 5/29/09, F S * wrote:
>
>
> From: F S 
> Subject: WebKit-Build
> To: webkit-dev@lists.webkit.org
> Date: Friday, May 29, 2009, 6:23 AM
>
>Hello all,
>
> I am new in Webkit development and I need your help.
>
> I am trying to build webkit with no success, I have spent quite some time
> reading google for possible hints and have seen many posts with many people
> having the same problem (some were posted a year or two ago) but have not
> seen any solution yet.
> I appreciate your help and looking forward to contribute as soon as I get
> my feet on the ground.
>
> Some background regarding my problem.
>
> -  Problem I see when I build:
> *Project : warning PRJ0018 : The following environment variables were not
> found:
> $(PRODUCTION)
> *
>
> *I have followed step by step the build instructions from (**
> http://webkit.org/building/checkout.html*
> *).*
> -  I installed VC Express and I am able to build successfully from VC
> Express (sample code)
> -  I visited useful link (
> http://blog.wrbsoftware.com/archive/2009/04/14/debugging-safari-on-windows.aspx
> ).
> -  I got the latest  Webkit code and I placed it under C:\cygwin\usr\webkit
> It seems to me that I still am not seeing some undocumented steps and I am
> hoping you might be able to point me to a solution.
>
> Thank you very much.
>
> Regards Fred
>
>
>
>
> ___
> 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.or

Re: [webkit-dev] WebKit-Build

2009-05-29 Thread F S
Hello,
 
Sorry, my previous email was sent at the middle, do not know why.
 
I have made some improvements that I like to share the findings, however it 
still does not build.
 
Things I did:
-  Added Environment Variables for INCLUDE, PATH and LIB to Windows environment 
to match VC++ setting
-  Reading through google find out needed to change 
"WebKit\WebCore\css\makevalues.pl" file to fix a bug.
(http://lists.macosforge.org/pipermail/webkit-unassigned/2009-May/109430.html)
- Now the WebCore projects compiles with only 32 errors as opposed to 1000+ 
errors.  
 
Below is the files it can not find.  I have run the webkit-update.  Do you know 
why these files are missing and where can I get them?

MoveSelectionCommand.cpp
c:\cygwin\usr\webkit\webcore\svg\SVGElement.h(29) : fatal error C1083: Cannot 
open include file: 'SVGNames.h': No such file or directory
WMLNoopElement.cpp
CSSStyleDeclaration.cpp
Plugin.cpp
..\editing\DeleteButtonController.cpp(33) : fatal error C1083: Cannot open 
include file: 'CSSValueKeywords.h': No such file or directory
HTMLInterchange.cpp
CrossThreadCopier.cpp
..\bindings\js\JSNodeCustom.cpp(61) : fatal error C1083: Cannot open include 
file: 'JSSVGElementWrapperFactory.h': No such file or directory
SQLResultSetRowList.cpp
XMLNames.cpp
c1xx : fatal error C1083: Cannot open source file: 
'..\..\webkitbuild\obj\webcore\derivedsources\XMLNames.cpp': No such file or 
directory
JSElementCustom.cpp
..\bindings\js\JSElementCustom.cpp(44) : fatal error C1083: Cannot open include 
file: 'JSSVGElementWrapperFactory.h': No such file or directory
SVGElementFactory.cpp
c1xx : fatal error C1083: Cannot open source file: 
'..\..\webkitbuild\obj\webcore\derivedsources\SVGElementFactory.cpp': No such 
file or directory
JSSVGElementWrapperFactory.cpp
c1xx : fatal error C1083: Cannot open source file: 
'..\..\webkitbuild\obj\webcore\derivedsources\JSSVGElementWrapperFactory.cpp': 
No such file or directory
XLinkNames.cpp
c1xx : fatal error C1083: Cannot open source file: 
'..\..\webkitbuild\obj\webcore\derivedsources\XLinkNames.cpp': No such file or 
directory
WMLElementFactory.cpp
c1xx : fatal error C1083: Cannot open source file: 
'..\..\webkitbuild\obj\webcore\derivedsources\WMLElementFactory.cpp': No such 
file or directory

 
Thanks and regards,
Fred


--- On Fri, 5/29/09, F S  wrote:


From: F S 
Subject: WebKit-Build
To: webkit-dev@lists.webkit.org
Date: Friday, May 29, 2009, 6:23 AM







Hello all,
 
I am new in Webkit development and I need your help.
 
I am trying to build webkit with no success, I have spent quite some time 
reading google for possible hints and have seen many posts with many people 
having the same problem (some were posted a year or two ago) but have not seen 
any solution yet.
I appreciate your help and looking forward to contribute as soon as I get my 
feet on the ground.
 
Some background regarding my problem.
 
-  Problem I see when I build:
Project : warning PRJ0018 : The following environment variables were not found:
$(PRODUCTION)

 
I have followed step by step the build instructions from 
(http://webkit.org/building/checkout.html).
-  I installed VC Express and I am able to build successfully from VC Express 
(sample code)
-  I visited useful link 
(http://blog.wrbsoftware.com/archive/2009/04/14/debugging-safari-on-windows.aspx).
-  I got the latest  Webkit code and I placed it under C:\cygwin\usr\webkit
It seems to me that I still am not seeing some undocumented steps and I am 
hoping you might be able to point me to a solution.
 
Thank you very much.
 
Regards Fred
 



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


Re: [webkit-dev] WebKit-Build

2009-05-29 Thread F S
Hello,
 
I have made some improvements that I like to share the findings, however it 
still does not build.
 
Things I did:
-  Noticed I 

--- On Fri, 5/29/09, F S  wrote:


From: F S 
Subject: WebKit-Build
To: webkit-dev@lists.webkit.org
Date: Friday, May 29, 2009, 6:23 AM







Hello all,
 
I am new in Webkit development and I need your help.
 
I am trying to build webkit with no success, I have spent quite some time 
reading google for possible hints and have seen many posts with many people 
having the same problem (some were posted a year or two ago) but have not seen 
any solution yet.
I appreciate your help and looking forward to contribute as soon as I get my 
feet on the ground.
 
Some background regarding my problem.
 
-  Problem I see when I build:
Project : warning PRJ0018 : The following environment variables were not found:
$(PRODUCTION)

 
I have followed step by step the build instructions from 
(http://webkit.org/building/checkout.html).
-  I installed VC Express and I am able to build successfully from VC Express 
(sample code)
-  I visited useful link 
(http://blog.wrbsoftware.com/archive/2009/04/14/debugging-safari-on-windows.aspx).
-  I got the latest  Webkit code and I placed it under C:\cygwin\usr\webkit
It seems to me that I still am not seeing some undocumented steps and I am 
hoping you might be able to point me to a solution.
 
Thank you very much.
 
Regards Fred
 



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


Re: [webkit-dev] WebKit-Build

2009-05-29 Thread F S
Hello,
 
I have made some improvements that I like to share the findings, however it 
still does not build.
 
Things I did:
-  

--- On Fri, 5/29/09, F S  wrote:


From: F S 
Subject: WebKit-Build
To: webkit-dev@lists.webkit.org
Date: Friday, May 29, 2009, 6:23 AM







Hello all,
 
I am new in Webkit development and I need your help.
 
I am trying to build webkit with no success, I have spent quite some time 
reading google for possible hints and have seen many posts with many people 
having the same problem (some were posted a year or two ago) but have not seen 
any solution yet.
I appreciate your help and looking forward to contribute as soon as I get my 
feet on the ground.
 
Some background regarding my problem.
 
-  Problem I see when I build:
Project : warning PRJ0018 : The following environment variables were not found:
$(PRODUCTION)

 
I have followed step by step the build instructions from 
(http://webkit.org/building/checkout.html).
-  I installed VC Express and I am able to build successfully from VC Express 
(sample code)
-  I visited useful link 
(http://blog.wrbsoftware.com/archive/2009/04/14/debugging-safari-on-windows.aspx).
-  I got the latest  Webkit code and I placed it under C:\cygwin\usr\webkit
It seems to me that I still am not seeing some undocumented steps and I am 
hoping you might be able to point me to a solution.
 
Thank you very much.
 
Regards Fred
 



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


Re: [webkit-dev] WebKit-Build

2009-05-29 Thread F S
Hello,
 
I have made some improvements that I like to share the findings, however it 
still does not build.
 
Things I did:
- 

--- On Fri, 5/29/09, F S  wrote:


From: F S 
Subject: WebKit-Build
To: webkit-dev@lists.webkit.org
Date: Friday, May 29, 2009, 6:23 AM







Hello all,
 
I am new in Webkit development and I need your help.
 
I am trying to build webkit with no success, I have spent quite some time 
reading google for possible hints and have seen many posts with many people 
having the same problem (some were posted a year or two ago) but have not seen 
any solution yet.
I appreciate your help and looking forward to contribute as soon as I get my 
feet on the ground.
 
Some background regarding my problem.
 
-  Problem I see when I build:
Project : warning PRJ0018 : The following environment variables were not found:
$(PRODUCTION)

 
I have followed step by step the build instructions from 
(http://webkit.org/building/checkout.html).
-  I installed VC Express and I am able to build successfully from VC Express 
(sample code)
-  I visited useful link 
(http://blog.wrbsoftware.com/archive/2009/04/14/debugging-safari-on-windows.aspx).
-  I got the latest  Webkit code and I placed it under C:\cygwin\usr\webkit
It seems to me that I still am not seeing some undocumented steps and I am 
hoping you might be able to point me to a solution.
 
Thank you very much.
 
Regards Fred
 



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


[webkit-dev] WebKit-Build

2009-05-29 Thread F S
Hello all,
 
I am new in Webkit development and I need your help.
 
I am trying to build webkit with no success, I have spent quite some time 
reading google for possible hints and have seen many posts with many people 
having the same problem (some were posted a year or two ago) but have not seen 
any solution yet.
I appreciate your help and looking forward to contribute as soon as I get my 
feet on the ground.
 
Some background regarding my problem.
 
-  Problem I see when I build:
Project : warning PRJ0018 : The following environment variables were not found:
$(PRODUCTION)

 
I have followed step by step the build instructions from 
(http://webkit.org/building/checkout.html).
-  I installed VC Express and I am able to build successfully from VC Express 
(sample code)
-  I visited useful link 
(http://blog.wrbsoftware.com/archive/2009/04/14/debugging-safari-on-windows.aspx).
-  I got the latest  Webkit code and I placed it under C:\cygwin\usr\webkit
It seems to me that I still am not seeing some undocumented steps and I am 
hoping you might be able to point me to a solution.
 
Thank you very much.
 
Regards Fred
 


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


[webkit-dev] WebKit build failing (rev.38617)

2008-12-01 Thread haithem rahmani
Hi all,

When building the WebKit I have the following error:

opening dependency file .deps/DerivedSources/JSCSSMediaRule.Tpo: No such
file or directory

to fix that I created the directory
"DerivedSources/JSCSSMediaRule.Tpo" manually
and it's OK.

how to modify the build system to fix this ?

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


Re: [webkit-dev] webkit build on 2008

2008-09-01 Thread David Kilzer
On Mon, 9/1/08, Amanda Llewellyn <[EMAIL PROTECTED]> wrote:

> Does anyone know if there are any plans to release a build
> of WebKit compatible with visual studio 2008?

Have you tried compiling WebKit with Visual Studio 2008?  Are you running into 
compiler errors or other build errors?  Could you post the logs here?

Thanks!

Dave


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


[webkit-dev] webkit build on 2008

2008-09-01 Thread Amanda Llewellyn
Hi,

Does anyone know if there are any plans to release a build of WebKit compatible 
with visual studio 2008?

thanks



This e-mail is confidential and intended solely for the use of the 
individual(s) to whom it is addressed. Any views or opinions expressed are 
those of the author. If you are not the intended recipient, please be advised 
that any use, dissemination, printing or copying of this email is strictly 
prohibited.

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


Re: [webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Mark Rowe


On May 13, 2008, at 5:39 PM, Darren VanBuren wrote:



On May 13, 2008, at 5:20 PM, Mark Rowe wrote:

Looking at build-launcher-app, it will build both Drosera.app and  
DroseraLauncher.app.  Are you sure that build-launcher-app ran to  
completion without failing?



At the end it did say

Unable to determine current SVN branch in /Users/onekopaka/WebKit at  
WebKitTools/BuildSlaveSupport/build-launcher-app line 58.


Could that be the problem?


Yes.  It looks like the script wasn't updated after we changed SVN  
repository access methods last year.



If so, how would I resolve it?


It looks like the currentSVNBranch function in build-launcher-app will  
need some small changes.


I'm still curious as to why you are attempting to build your own  
WebKit disk images rather than using those which are readily available  
from nightly.webkit.org?


- Mark

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


Re: [webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Darren VanBuren

At the end it did say

Unable to determine current SVN branch in /Users/onekopaka/WebKit at  
WebKitTools/BuildSlaveSupport/build-launcher-app line 58.


Could that be the problem?
If so, how would I resolve it?

On May 13, 2008, at 5:20 PM, Mark Rowe wrote:



On May 13, 2008, at 5:07 PM, Darren VanBuren wrote:


On May 13, 2008, at 5:01 PM, Mark Rowe wrote:



On May 13, 2008, at 4:57 PM, Darren VanBuren wrote:


I am trying to make a DMG like the Nightlies,


I think you need to run build-launcher-app prior to running build- 
launcher-dmg.  That will bundle the frameworks up inside  
WebKit.app, Drosera.app inside DroseraLauncher.app, etc.


- Mark



I did, but it just seems to bundle WebKit.app


Looking at build-launcher-app, it will build both Drosera.app and  
DroseraLauncher.app.  Are you sure that build-launcher-app ran to  
completion without failing?


- Mark



Darren VanBuren
[EMAIL PROTECTED]
--
Administrator of Onekopakaspace



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


Re: [webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Mark Rowe


On May 13, 2008, at 5:07 PM, Darren VanBuren wrote:


On May 13, 2008, at 5:01 PM, Mark Rowe wrote:



On May 13, 2008, at 4:57 PM, Darren VanBuren wrote:


I am trying to make a DMG like the Nightlies,


I think you need to run build-launcher-app prior to running build- 
launcher-dmg.  That will bundle the frameworks up inside  
WebKit.app, Drosera.app inside DroseraLauncher.app, etc.


- Mark



I did, but it just seems to bundle WebKit.app


Looking at build-launcher-app, it will build both Drosera.app and  
DroseraLauncher.app.  Are you sure that build-launcher-app ran to  
completion without failing?


- Mark

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


Re: [webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Darren VanBuren

I did, but it just seems to bundle WebKit.app
On May 13, 2008, at 5:01 PM, Mark Rowe wrote:



On May 13, 2008, at 4:57 PM, Darren VanBuren wrote:


I am trying to make a DMG like the Nightlies,


I think you need to run build-launcher-app prior to running build- 
launcher-dmg.  That will bundle the frameworks up inside WebKit.app,  
Drosera.app inside DroseraLauncher.app, etc.


- Mark



Darren VanBuren
[EMAIL PROTECTED]
--
Administrator of Onekopakaspace



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


Re: [webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Mark Rowe


On May 13, 2008, at 4:57 PM, Darren VanBuren wrote:


I am trying to make a DMG like the Nightlies,


I think you need to run build-launcher-app prior to running build- 
launcher-dmg.  That will bundle the frameworks up inside WebKit.app,  
Drosera.app inside DroseraLauncher.app, etc.


- Mark

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


Re: [webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Darren VanBuren

I am trying to make a DMG like the Nightlies,
On May 13, 2008, at 4:22 PM, Mark Rowe wrote:


Darren,

What is it that you're trying to do?  You can build + run Drosera by  
running ./WebKitTools/Scripts/build-drosera and then opening  
WebKitBuild/Release/Drosera.app.


- Mark

On May 13, 2008, at 4:10 PM, Darren VanBuren wrote:

When I try to run WebKitTools/BuildSlaveSupport/build-launcher-dmg  
i get the following errors:


Macintosh:WebKit onekopaka$ WebKitTools/BuildSlaveSupport/build- 
launcher-dmg

Removing previous temp source directory (if any)...
Making a new temp source directory...
Copying WebKit.app to temp source directory...
Copying Drosera.app to temp source directory...
cp: /Users/onekopaka/WebKit/WebKitBuild/Release/ 
DroseraLauncher.app: No such file or directory
Copying Drosera.app to temp source directory failed at WebKitTools/ 
BuildSlaveSupport/build-launcher-dmg line 68.


My question is: How do i make the DroseraLauncher.app file? I built  
WebKit, Drosera, and the WebKit Launcher.


Darren VanBuren
[EMAIL PROTECTED]
--
Administrator of Onekopakaspace



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




Darren VanBuren
[EMAIL PROTECTED]
--
Administrator of Onekopakaspace



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


Re: [webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Mark Rowe

Darren,

What is it that you're trying to do?  You can build + run Drosera by  
running ./WebKitTools/Scripts/build-drosera and then opening  
WebKitBuild/Release/Drosera.app.


- Mark

On May 13, 2008, at 4:10 PM, Darren VanBuren wrote:

When I try to run WebKitTools/BuildSlaveSupport/build-launcher-dmg i  
get the following errors:


Macintosh:WebKit onekopaka$ WebKitTools/BuildSlaveSupport/build- 
launcher-dmg

Removing previous temp source directory (if any)...
Making a new temp source directory...
Copying WebKit.app to temp source directory...
Copying Drosera.app to temp source directory...
cp: /Users/onekopaka/WebKit/WebKitBuild/Release/DroseraLauncher.app:  
No such file or directory
Copying Drosera.app to temp source directory failed at WebKitTools/ 
BuildSlaveSupport/build-launcher-dmg line 68.


My question is: How do i make the DroseraLauncher.app file? I built  
WebKit, Drosera, and the WebKit Launcher.


Darren VanBuren
[EMAIL PROTECTED]
--
Administrator of Onekopakaspace



___
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


[webkit-dev] WebKit build-launcher-dmg error

2008-05-13 Thread Darren VanBuren
When I try to run WebKitTools/BuildSlaveSupport/build-launcher-dmg i  
get the following errors:


Macintosh:WebKit onekopaka$ WebKitTools/BuildSlaveSupport/build- 
launcher-dmg

Removing previous temp source directory (if any)...
Making a new temp source directory...
Copying WebKit.app to temp source directory...
Copying Drosera.app to temp source directory...
cp: /Users/onekopaka/WebKit/WebKitBuild/Release/DroseraLauncher.app:  
No such file or directory
Copying Drosera.app to temp source directory failed at WebKitTools/ 
BuildSlaveSupport/build-launcher-dmg line 68.


My question is: How do i make the DroseraLauncher.app file? I built  
WebKit, Drosera, and the WebKit Launcher.


Darren VanBuren
[EMAIL PROTECTED]
--
Administrator of Onekopakaspace



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


Re: [webkit-dev] Webkit build failed, qmake doesn't know -r option?

2008-04-22 Thread Michael Tross
On 22.04.2008 15:17, Kiswono Prayogo wrote:
> Hello, can anybody help me to solve this error? thanks in advance..
> 
> i've check out webkit's svn,
> i'm using visual studio 2008 express edition,
> installed all needed component/SDKs as seen in the tutorial,
> and try to build webkit, but i got thiss error message:
> 
> Microsoft Windows XP [Version 5.1.2600]
> (C) Copyright 1985-2001 Microsoft Corp.
> 
> N:\Documents and Settings\Administrator>cygwin
> 
> [EMAIL PROTECTED] ~
> $ cd /cygdrive/f/Kiz/Projects/
> 
> [EMAIL PROTECTED] /cygdrive/f/Kiz/Projects
> $ WebKit/WebKitTools/Scripts/build-webkit
> Subroutine main::tmpfile redefined at /usr/lib/perl5/5.8/Exporter.pm line 65.
>  at /usr/lib/perl5/5.8/cygwin/POSIX.pm line 19
> Subroutine main::tmpnam redefined at /usr/lib/perl5/5.8/Exporter.pm line 65.
>  at /usr/lib/perl5/5.8/cygwin/POSIX.pm line 19
> Checking mod-date of WebKitSupportLibrary.zip...
> Current WebKitSupportLibrary is up to date
> Calling 'qmake CONFIG+=qt-port -r
> OUTPUT_DIR=/cygdrive/f/Kiz/Projects/WebKit/WebKitBuild/Release
> /cygdrive/f/Kiz/Projects/WebKit/WebKit.pro CONFIG+=release
> CONFIG-=debug' in /cygdrive/f/Kiz/Pr
> ojects/WebKit/WebKitBuild/Release
> 
> ***Unknown option -r
> Usage: qmake [mode] [options] [files]
> 

You need at least Qt version 4.3 to build WebKit.

You can find build instructions for WebKit/Qt here:
http://trac.webkit.org/projects/webkit/wiki/QtWebKit

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


[webkit-dev] Webkit build failed, qmake doesn't know -r option?

2008-04-22 Thread Kiswono Prayogo
Hello, can anybody help me to solve this error? thanks in advance..

i've check out webkit's svn,
i'm using visual studio 2008 express edition,
installed all needed component/SDKs as seen in the tutorial,
and try to build webkit, but i got thiss error message:

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

N:\Documents and Settings\Administrator>cygwin

[EMAIL PROTECTED] ~
$ cd /cygdrive/f/Kiz/Projects/

[EMAIL PROTECTED] /cygdrive/f/Kiz/Projects
$ WebKit/WebKitTools/Scripts/build-webkit
Subroutine main::tmpfile redefined at /usr/lib/perl5/5.8/Exporter.pm line 65.
 at /usr/lib/perl5/5.8/cygwin/POSIX.pm line 19
Subroutine main::tmpnam redefined at /usr/lib/perl5/5.8/Exporter.pm line 65.
 at /usr/lib/perl5/5.8/cygwin/POSIX.pm line 19
Checking mod-date of WebKitSupportLibrary.zip...
Current WebKitSupportLibrary is up to date
Calling 'qmake CONFIG+=qt-port -r
OUTPUT_DIR=/cygdrive/f/Kiz/Projects/WebKit/WebKitBuild/Release
/cygdrive/f/Kiz/Projects/WebKit/WebKit.pro CONFIG+=release
CONFIG-=debug' in /cygdrive/f/Kiz/Pr
ojects/WebKit/WebKitBuild/Release

***Unknown option -r
Usage: qmake [mode] [options] [files]

  QMake has two modes, one mode for generating project files based on
some heuristics, and the other for generating makefiles. Normally you
shouldn't need to specify a mode, as makefile generation is the default
mode for qmake, but you may use this to test qmake on an existing project

Mode:
   -project   Put qmake into project file generation mode
  In this mode qmake interprets files as files to
  be built,
  defaults to *.c; *.ui; *.y; *.l; *.ts; *.h;
*.hpp; *.hh; *.H; *.hxx; *.cpp; *.cc; *.cxx; *.C
   -makefile  Put qmake into makefile generation mode (default)
  In this mode qmake interprets files as project files to
  be processed, if skipped qmake will try to find a project
  file in your current working directory

Warnings Options:
   -Wnone Turn off all warnings
   -Wall  Turn on all warnings
   -Wparser   Turn on parser warnings
   -WlogicTurn on logic warnings

Options:
* You can place any variable assignment in options and it will be *
* processed as if it was in [files]. These assignments will be parsed *
* before [files]. *
   -o fileWrite output to file
   -unix  Run in unix mode
   -win32 Run in win32 mode
   -macx  Run in Mac OS X mode
   -d Increase debug level
   -t templ   Overrides TEMPLATE as templ
   -tp prefix Overrides TEMPLATE so that prefix is prefixed
into the value
   -help  This help
   -v Version information
   -after All variable assignments after this will be
  parsed after [files]
   -cache fileUse file as cache   [makefile mode only]
   -spec spec Use spec as QMAKESPEC   [makefile mode only]
   -nocache   Don't use a cache file  [makefile mode only]
   -nodepend  Don't generate dependencies [makefile mode only]
   -nomoc Don't generate moc targets  [makefile mode only]
   -nopwd Don't look for files in pwd [ project mode only]
   -norecursive   Don't do a recursive search [ project mode only]
Failed to setup build environment using qmake!

--

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


[webkit-dev] Webkit build failed, qmake doesn't know -r option?

2008-04-22 Thread Kiswono Prayogo
Hello, can anybody help me to solve this error? thanks in advance..

i've check out webkit's svn,
i'm using visual studio 2008 express edition,
installed all needed component/SDKs as seen in the tutorial,
and try to build webkit, but i got thiss error message:

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

N:\Documents and Settings\Administrator>cygwin

[EMAIL PROTECTED] ~
$ cd /cygdrive/f/Kiz/Projects/

[EMAIL PROTECTED] /cygdrive/f/Kiz/Projects
$ WebKit/WebKitTools/Scripts/build-webkit
Subroutine main::tmpfile redefined at /usr/lib/perl5/5.8/Exporter.pm line 65.
 at /usr/lib/perl5/5.8/cygwin/POSIX.pm line 19
Subroutine main::tmpnam redefined at /usr/lib/perl5/5.8/Exporter.pm line 65.
 at /usr/lib/perl5/5.8/cygwin/POSIX.pm line 19
Checking mod-date of WebKitSupportLibrary.zip...
Current WebKitSupportLibrary is up to date
Calling 'qmake CONFIG+=qt-port -r
OUTPUT_DIR=/cygdrive/f/Kiz/Projects/WebKit/WebKitBuild/Release
/cygdrive/f/Kiz/Projects/WebKit/WebKit.pro CONFIG+=release
CONFIG-=debug' in /cygdrive/f/Kiz/Pr
ojects/WebKit/WebKitBuild/Release

***Unknown option -r
Usage: qmake [mode] [options] [files]

   QMake has two modes, one mode for generating project files based on
some heuristics, and the other for generating makefiles. Normally you
shouldn't need to specify a mode, as makefile generation is the default
mode for qmake, but you may use this to test qmake on an existing project

Mode:
-project   Put qmake into project file generation mode
   In this mode qmake interprets files as files to
   be built,
   defaults to *.c; *.ui; *.y; *.l; *.ts; *.h;
*.hpp; *.hh; *.H; *.hxx; *.cpp; *.cc; *.cxx; *.C
-makefile  Put qmake into makefile generation mode (default)
   In this mode qmake interprets files as project files to
   be processed, if skipped qmake will try to find a project
   file in your current working directory

Warnings Options:
-Wnone Turn off all warnings
-Wall  Turn on all warnings
-Wparser   Turn on parser warnings
-WlogicTurn on logic warnings

Options:
 * You can place any variable assignment in options and it will be *
 * processed as if it was in [files]. These assignments will be parsed *
 * before [files]. *
-o fileWrite output to file
-unix  Run in unix mode
-win32 Run in win32 mode
-macx  Run in Mac OS X mode
-d Increase debug level
-t templ   Overrides TEMPLATE as templ
-tp prefix Overrides TEMPLATE so that prefix is prefixed
into the value
-help  This help
-v Version information
-after All variable assignments after this will be
   parsed after [files]
-cache fileUse file as cache   [makefile mode only]
-spec spec Use spec as QMAKESPEC   [makefile mode only]
-nocache   Don't use a cache file  [makefile mode only]
-nodepend  Don't generate dependencies [makefile mode only]
-nomoc Don't generate moc targets  [makefile mode only]
-nopwd Don't look for files in pwd [ project mode only]
-norecursive   Don't do a recursive search [ project mode only]
Failed to setup build environment using qmake!

--

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


Re: [webkit-dev] webkit build with -g option

2008-02-01 Thread Mark Rowe


On 02/02/2008, at 00:42, Srinivas Rao M Hamse wrote:


Hi Mark/Oliver


That does the same thing as running 'set-webkit-configuration --debug'
followed by 'build-webkit', that is it also unsets NDEBUG which leads
to assertions and logging code being compiled in.  I think the answer
to the original question will depend on which port of WebKit (and thus
which build system: Xcode, Visual Studio, Qmake, Autotools, or
Bakefile) they are using.

Precisely the behavior with these two options are same. I want to  
disable NDEBUG from my build.


I am trying to complie the r26699 build on linux with gtk port  
option on Linux. Just want the line number information for debugging  
with gdb.


 ./build-webkit --gtk --debug


The easiest way I can think of to do what you want would be to make a  
small change to WebKit.pri.  Changing:


CONFIG(release) {
DEFINES += NDEBUG
}

to:

DEFINES += NDEBUG

will lead to both debug and release builds having assertions and  
logging disabled.  If you then build for debug, you should have  
symbols in your build.  It may be possible to have build-webkit do  
this via a command-line argument, but I'm not sure on the specifics of  
that.


Hope this helps.

Mark



smime.p7s
Description: S/MIME cryptographic signature
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] webkit build with -g option

2008-02-01 Thread Oliver Hunt


On Feb 1, 2008, at 5:42 AM, Srinivas Rao M Hamse wrote:


Hi Mark/Oliver


That does the same thing as running 'set-webkit-configuration --debug'
followed by 'build-webkit', that is it also unsets NDEBUG which leads
to assertions and logging code being compiled in.  I think the answer
to the original question will depend on which port of WebKit (and thus
which build system: Xcode, Visual Studio, Qmake, Autotools, or
Bakefile) they are using.

Precisely the behavior with these two options are same. I want to  
disable NDEBUG from my build.


I am trying to complie the r26699 build on linux with gtk port  
option on Linux. Just want the line number information for debugging  
with gdb.


 ./build-webkit --gtk --debug


That revision is months old, currently trunk is at r29900 or some  
such, we can't really help you unless what you're building is at least  
vaguely up to date sorry :(


--Oliver





regards,
Srinivas Rao. M



Kind regards,

Mark




--
Srinivas Rao M Hamse
___
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


Re: [webkit-dev] webkit build with -g option

2008-02-01 Thread Srinivas Rao M Hamse
Hi Mark/Oliver



> That does the same thing as running 'set-webkit-configuration --debug'
> followed by 'build-webkit', that is it also unsets NDEBUG which leads
> to assertions and logging code being compiled in.  I think the answer
> to the original question will depend on which port of WebKit (and thus
> which build system: Xcode, Visual Studio, Qmake, Autotools, or
> Bakefile) they are using.
>

Precisely the behavior with these two options are same. I want to disable
NDEBUG from my build.

I am trying to complie the r26699 build on linux with gtk port option on
Linux. Just want the line number information for debugging with gdb.

 ./build-webkit --gtk --debug


regards,
Srinivas Rao. M



>
> Kind regards,
>
> Mark
>
>


-- 
Srinivas Rao M Hamse 
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] webkit build with -g option

2008-02-01 Thread Mark Rowe


On 02/02/2008, at 00:18, Oliver Dole wrote:


Hello,

On 2/1/08, Srinivas Rao M Hamse <[EMAIL PROTECTED]> wrote:

HI,
 Has anyone tried compiling webkit using -g option. When i tried  
the debug

build by setting the flag using
./set-webkit-configuration , i get a build with lots of assert and  
log

message which i donot need.
I just want a build which is similar to release build but has the  
debug

information in it for debugging it with gdb.

Has anyone tried this ?



Have tried to build webkit with the following option:
WebKit/WebKitTools/Scripts/build-webkit --debug



That does the same thing as running 'set-webkit-configuration --debug'  
followed by 'build-webkit', that is it also unsets NDEBUG which leads  
to assertions and logging code being compiled in.  I think the answer  
to the original question will depend on which port of WebKit (and thus  
which build system: Xcode, Visual Studio, Qmake, Autotools, or  
Bakefile) they are using.


Kind regards,

Mark



smime.p7s
Description: S/MIME cryptographic signature
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] webkit build with -g option

2008-02-01 Thread Oliver Dole
Hello,

On 2/1/08, Srinivas Rao M Hamse <[EMAIL PROTECTED]> wrote:
> HI,
>   Has anyone tried compiling webkit using -g option. When i tried the debug
> build by setting the flag using
> ./set-webkit-configuration , i get a build with lots of assert and log
> message which i donot need.
> I just want a build which is similar to release build but has the debug
> information in it for debugging it with gdb.
>
> Has anyone tried this ?
>

Have tried to build webkit with the following option:
WebKit/WebKitTools/Scripts/build-webkit --debug

Regards,

> regards,
> Srinvas Rao. M
>
> --
> Srinivas Rao M Hamse
>
> ___
> webkit-dev mailing list
> webkit-dev@lists.webkit.org
> http://lists.webkit.org/mailman/listinfo/webkit-dev
>
>


-- 
Olivier DOLE
Pleyo
Software Engineer
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


[webkit-dev] webkit build with -g option

2008-02-01 Thread Srinivas Rao M Hamse
HI,
  Has anyone tried compiling webkit using -g option. When i tried the debug
build by setting the flag using
./set-webkit-configuration , i get a build with lots of assert and log
message which i donot need.
I just want a build which is similar to release build but has the debug
information in it for debugging it with gdb.

Has anyone tried this ?

regards,
Srinvas Rao. M

-- 
Srinivas Rao M Hamse 
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-dev


Re: [webkit-dev] webkit-build in VS2005 team suite

2007-12-14 Thread Brent Fulgham
On Dec 14, 2007 1:06 AM, 정우철 <[EMAIL PROTECTED]> wrote:

> I want to build webkit. But there is some problem.
>
> I get a current source code by SVN.
>
> And open ~\WebKit\WebKit\win\WebKit.sln file by VS2005.
>
> But there's many errors. Then fail to build.
>
> (ex. Unicode/uchar.h : No such file or directory)
>
> What's my problem? Help me, please~
>

Please install the Cygwin toolkit (see instructions on "
http://webkit.org/building/tools.html"; under 'Windows').  Then look at the
build instructions ("http://webkit.org/building/build.html";) for details on
how to build under Windows.

You do not build using Visual Studio directly.  Instead, you run the
"build-webkit" command from the Cygwin shell.

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


[webkit-dev] webkit-build in VS2005 team suite

2007-12-14 Thread 정우철
 

Hi, all

 

First of all, I sorry about my short English.

(I’m a Korean.)

 

I want to build webkit. But there is some problem.

I get a current source code by SVN.

And open ~\WebKit\WebKit\win\WebKit.sln file by VS2005.

But there’s many errors. Then fail to build.

(ex. Unicode/uchar.h : No such file or directory)

What’s my problem? Help me, please~

 

 

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