展开全部
从这个包的e5a48de588b63231313335323631343130323136353331333365653933安装脚本来看setup.py,好像是不支持的:# Debug builds are useful for finding errors in
# the request counting semantics for Spidermonkey
if DEBUG:
config["extra_compile_args"].extend([
"-UNDEBG",
"-DDEBUG",
"-DJS_PARANOID_REQUEST"
])
if sysname in ["Linux", "FreeBSD"]:
config["extra_compile_args"].extend([
"-DHAVE_VA_COPY",
"-DVA_COPY=va_copy"
])
# Currently no suppot for Win32, patches welcome.当前不支持win32,欢迎补充
if sysname in ["Darwin", "Linux", "FreeBSD"]:
config["extra_compile_args"].append("-DXP_UNIX")
else:
raise RuntimeError("Unknown system name: %s" % sysname)