[webkit-dev] JavaScripCore on Android

2011-06-30 Thread Ericsen Cioffi
Hi, I hope I make myself clear, but i am sorry for my poor English. I am trying to build the JavaScriptCore (a piece of webkit) as a shared object to use in my Android Application. I got a lot of errors and i corrected them by configuring my Android.mk file. But, now i am getting the following

Re: [webkit-dev] JavaScripCore on Android

2011-06-30 Thread Zoltan Herczeg
Hi, ThreadSpecific contains the platform dependent TLS (Thread Local Storage) implementation for WebKit. In Platform.h: #if PLATFORM(ANDROID) #define WTF_USE_PTHREADS 1 ... Thus, Android should use pthread.h (Please check this line in your Source/JavaScriptCore/wtf/Platform.h) You could try