Subj : Re: help To : Pradip Singh From : Brendan Eich Date : Wed Jan 28 2004 12:41 pm Pradip Singh wrote: > Hi all, > > I have ported the spiderMonkey js engine to an embedded platform. The > performance is ok. But i see the code size is very big. I want to reduce > the code size. Plz give any hint how to start. Since i have ported it i > donot know the whole source code of js engine. Basically i want to > reduce the footprint of spidermonkey jsengine. At the same time care > should also be taken that the runtime memory requirement is not so huge. > So plz pass on ur valuable suggestion in this regards. What kind of embedded program? If a browser, you may not need all the ECMA extensions. See jsconfig.h, where you can define JS_VERSION to JS_VERSION_ECMA_3. /be .