Reputation: 2614
My libm does not have sin and cos functions.
Is there a configuration switch that enables me to compile spidermonkey without the Math.* function of JavaScript?
Regards
Upvotes: 1
Views: 64
Reputation: 2390
It might be easier to implement sin/cos in a helper file than to remove Math from javascript.
Upvotes: 0
Reputation: 1771
Perhaps you can write stub (dummy) functions to avoid the compilation/link errors..
Upvotes: 1