My steps is like this: 1. start C:\cygwin\Cygwin.bat 2. cd /home/sg/WebKitBuild 3. cmake -G "Visual Studion 8 2005" -DCMAKE_WINCE_SDK="STANDARDSDK_500 (ARMV4I)" -DPORT=WinCE -D3RDPART_DIR=C:/webkit-thirdparty C:\\WebKit-r89812\\Source Then error happened: Determining if the C compiler works failed with the following output: Change Dir: C:/cygwin/home/sg/WebKitBuild/CMakeFiles/CMakeTmp Run Build Command:C:\PROGRA~1\MICROS~2\Common7\IDE\devenv.com CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec Microsoft (R) Visual Studio Version 8.0.50727.762. Copyright (C) Microsoft Corp 1984-2005. All rights reserved. 1>------ Build started: Project: cmTryCompileExec, Configuration: Debug STANDARDSDK_500 (ARMV4I) ------ 1>Compiling... 1>Microsoft (R) C/C++ Optimizing Compiler Version 14.00.60131 for ARM 1>Copyright (C) Microsoft Corporation. All rights reserved. 1>cl /Od /Os /D "_DEBUG" /D "CMAKE_INTDIR=\"Debug\"" /D "_MBCS" /FD /MDd /fp:fast /GR- /Fo"cmTryCompileExec.dir\Debug\\" /Fd"C:\cygwin\home\sg\WebKitBuild\CMakeFiles\CMakeTmp\Debug/cmTryCompileExec.pdb" /c /Zi /TC 1> .\testCCompiler.c 1>testCCompiler.c 1>Linking... 1>LINK : fatal error LNK1181: cannot open input file 'kernel32.lib' 1>Build log was saved at "file://c:\cygwin\home\sg\WebKitBuild\CMakeFiles\CMakeTmp\cmTryCompileExec.dir\Debug\BuildLog.htm" 1>cmTryCompileExec - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
At 2011-07-08 13:15:43,achellies <[email protected]> wrote: you can use the CMake to build the webkit for ce port, you can use the following command call cmake.exe -G "Visual Studio 8 2005" -D CMAKE_WINCE_SDK:STRING="STANDARDSDK_500 (ARMV4I)" -D PORT:STRING=WinCE -D 3RDPARTY_DIR:STRING="E:/Webkit/Codes/Webkit/Source/3rdparty" .. At 2011-07-08,"孙光" <[email protected]> wrote: After I replace thebin/cmake.exe and change a few Modules files with the extracted files from cmake-2.8.3-ce-win32-x86-diff.zip. There are some other errors. Please help me. Determining if the C compiler works failed with the following output: Change Dir: C:/cygwin/home/sg/WebKitBuild/CMakeFiles/CMakeTmp Run Build Command:C:\PROGRA~1\MICROS~2\Common7\IDE\devenv.com CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec Microsoft (R) Visual Studio Version 8.0.50727.762. Copyright (C) Microsoft Corp 1984-2005. All rights reserved. 1>------ Build started: Project: cmTryCompileExec, Configuration: Debug STANDARDSDK_500 (ARMV4I) ------ 1>Compiling... 1>Microsoft (R) C/C++ Optimizing Compiler Version 14.00.60131 for ARM 1>Copyright (C) Microsoft Corporation. All rights reserved. 1>cl /Od /Os /D "_DEBUG" /D "CMAKE_INTDIR=\"Debug\"" /D "_MBCS" /FD /MDd /fp:fast /GR- /Fo"cmTryCompileExec.dir\Debug\\" /Fd"C:\cygwin\home\sg\WebKitBuild\CMakeFiles\CMakeTmp\Debug/cmTryCompileExec.pdb" /c /Zi /TC 1> .\testCCompiler.c 1>testCCompiler.c 1>Linking... 1>LINK : fatal error LNK1181: cannot open input file 'kernel32.lib' 1>Build log was saved at "file://c:\cygwin\home\sg\WebKitBuild\CMakeFiles\CMakeTmp\cmTryCompileExec.dir\Debug\BuildLog.htm" 1>cmTryCompileExec - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== At 2011-07-08 10:18:48,"孙光" <[email protected]> wrote: Thank you for helping me. Yes, I'm tring Windows CE port. When I build the source code, there are some errors happened. Can you help to see about that, thanks. Determining if the C compiler works failed with the following output: Change Dir: C:/cygwin/home/sg/WebKitBuild/CMakeFiles/CMakeTmp Run Build Command:C:\PROGRA~1\MICROS~2\Common7\IDE\devenv.com CMAKE_TRY_COMPILE.sln /build Debug /project cmTryCompileExec Microsoft (R) Visual Studio Version 8.0.50727.762. Copyright (C) Microsoft Corp 1984-2005. All rights reserved. 1>------ Build started: Project: cmTryCompileExec, Configuration: Debug STANDARDSDK_500 (ARMV4I) ------ 1>Compiling... 1>Microsoft (R) C/C++ Optimizing Compiler Version 14.00.60131 for ARM 1>Copyright (C) Microsoft Corporation. All rights reserved. 1>cl /O2 /Os /D "CMAKE_INTDIR=\"Debug\"" /D "_MBCS" /FD /fp:fast /GR- /Fo"cmTryCompileExec.dir\Debug\\" /Fd"C:\cygwin\home\sg\WebKitBuild\CMakeFiles\CMakeTmp\Debug/cmTryCompileExec.pdb" /c /TC 1> .\testCCompiler.c 1>testCCompiler.c 1>Linking... 1>LINK : error LNK2001: unresolved external symbol WinMainCRTStartup 1>C:\cygwin\home\sg\WebKitBuild\CMakeFiles\CMakeTmp\Debug\cmTryCompileExec : fatal error LNK1120: 1 unresolved externals 1>Build log was saved at "file://c:\cygwin\home\sg\WebKitBuild\CMakeFiles\CMakeTmp\cmTryCompileExec.dir\Debug\BuildLog.htm" 1>cmTryCompileExec - 2 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== At 2011-07-06 23:47:05,"Ryosuke Niwa" <[email protected]> wrote: Try Windows CE port? http://trac.webkit.org/wiki/WinCE - Ryosuke 2011/7/6 孙光<[email protected]> Hi! I want to embed webkit function into my applicatin which will be running on windows mobile. But I have very little kownledge about webkit. My development environment is windows XP + VS2005, now i have download the webkit source and set the development environment. There are some questions for me: 1. How to build the webkit for windows mobile. 2. Are there any demonstrations for my situation, I have googled it for some days, but I got nothing. Best Regards Sun Guang _______________________________________________ webkit-help mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-help
_______________________________________________ webkit-help mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-help
