chinmaya sn (chins) wrote:
> 
> Just curious, how would you verify if JavaScript in your browser has JIT
> support or not?
> 

I added this in the interpreter constructor:

#if ENABLE(JIT)
    printf("JIT enabled\n");
#else
    printf("JIT disabled\n");
#endif

As an update. Building with "JAVASCRIPTCORE_JIT=no" works if I start from a
fresh SVN checkout that hasn't been built without that option before.
-- 
View this message in context: 
http://old.nabble.com/Disabling-the-JIT-tp28378562p28401613.html
Sent from the Webkit mailing list archive at Nabble.com.

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

Reply via email to