Hi,

  I am sorry, I have so many questions. But I can't compile qtwebkit with CE6 
SDK for MIPS.
I have below errors when linking stage:

        link /LIBPATH:".\release" /LIBPATH:"e:\bb_webkit\QtWin600\lib" /NOLOGO /
NODEFAULTLIB:OLDNAMES.LIB /INCREMENTAL:NO /SUBSYSTEM:WINDOWSCE,6.00 /MACHINE:MIP
S /MAP:DEBUG_MAP /OUT:release\jsc.exe @C:\DOCUME~1\htang\LOCALS~1\Temp\nmBAB1.tm
p
   Creating library release\jsc.lib and object release\jsc.exp
jscore.lib(CurrentTime.obj) : error LNK2019: unresolved external symbol __imp_ti
meEndPeriod referenced in function "double __cdecl WTF::currentTime(void)" (?cur
rentt...@wtf@@YANXZ)
jscore.lib(CurrentTime.obj) : error LNK2019: unresolved external symbol __imp_ti
meBeginPeriod referenced in function "double __cdecl WTF::currentTime(void)" (?c
urrentt...@wtf@@YANXZ)
release\jsc.exe : fatal error LNK1120: 2 unresolved externals
NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\ce\bi
n\x86_mips\link.EXE"' : return code '0x460'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\bin\n
make.exe"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'cd' : return code '0x2'
Stop.

I saw the currenttime.cpp, it has defined currentTime() function like this:

double currentTime()
{
    struct timeval now;
    struct timezone zone;

    gettimeofday(&now, &zone);
    return static_cast<double>(now.tv_sec) + (double)(now.tv_usec / 1000000.0);
}

How to fix it?

Thanks and Regards

________________________________
From: İsmail Dönmez [mailto:[email protected]]
Sent: 04 May 2010 20:21
To: Hui Tang
Cc: Benjamin Poulain; [email protected]
Subject: Re: [webkit-qt] Webkit can't load any pages on MIPS with windows CE 6.0

Just running perl WebKitTools\Scripts\build-webkit --qt again fixes the problem 
for me.
On Tue, May 4, 2010 at 9:09 AM, Hui Tang 
<[email protected]<mailto:[email protected]>> wrote:
perl WebKitTools\Scripts\build-webkit --qt

_______________________________________________
webkit-qt mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-qt

Reply via email to