On 2008-08-06, at 22:41, nishit sharma wrote:

I am cross compiling the WebKit browser for MIPS. But i am facing some issues during last stage. It gives me error like

./.libs/libJavaScriptCore.a(libJavaScriptCore_la-AllInOneFile.o) (.text+0xb88): In function `KJS::isStrWhiteSpace(unsigned short)':
: undefined reference to `u_charType_3_8'
./.libs/libJavaScriptCore.a(libJavaScriptCore_la-AllInOneFile.o) (.text+0x348c): In function `KJS::JSValue::toUInt32SlowCase(double, bool&)':
: undefined reference to `trunc'
./.libs/libJavaScriptCore.a(libJavaScriptCore_la-AllInOneFile.o) (.text+0x3794): In function `KJS::JSValue::toInt32SlowCase(double, bool&)':
: undefined reference to `trunc'
./.libs/libJavaScriptCore.a(libJavaScriptCore_la-AllInOneFile.o) (.text+0x39c8): In function `KJS::JSValue::toIntegerPreserveNaN (KJS::ExecState*) const':
: undefined reference to `trunc'
./.libs/libJavaScriptCore.a(libJavaScriptCore_la-AllInOneFile.o) (.text+0x3b24): In function `KJS::JSValue::toInteger (KJS::ExecState*) const':
: undefined reference to `trunc'
 and many more.

Can anybody can tell what i am doing wrong.

It looks like you're not linking against libraries that define the symbols that JavaScriptCore uses. u_charType_3_8 should come from ICU 3.8. trunc comes from the system math library, often known as libm, etc. If you have the linker pull in these libraries then you should make more progress.

- Mark

Attachment: smime.p7s
Description: S/MIME cryptographic signature

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

Reply via email to