Sunspider 找不到外壳
从“http://svn.webkit.org/repository/webkit/trunk/SunSpider/”检出 SVN V8 Shell 目录:~/v8/shell
命令行:
perl sunspider --shell=~/v8/shell
它不起作用并显示“无法在 sunspider 第 124 行打开 ....js”。
但我认为我的道路是正确的,请告诉我为什么,TKS!
SVN checkout from 'http://svn.webkit.org/repository/webkit/trunk/SunSpider/'
V8 Shell directory: ~/v8/shell
command line:
perl sunspider --shell=~/v8/shell
It doesn't work and show me 'Failed to open ....js at sunspider line 124'.
but I think my path is correct , just tell my why, TKS!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试过,“~”也让我失败了。
尝试使用完整路径或相对路径:
chmod +x 太阳蜘蛛
./sunspider --shell=/home/username/v8/shell --args=--expose_gc
不要忘记 v8 shell 的 --expose_gc 参数。否则它将无法工作,因为 Sunspider 基准测试在每个基准测试之间进行垃圾收集,并且 v8 默认情况下不公开 GC 函数。
编辑:错别字...
I tried and the '~' makes it fails for me too.
Try with a full or relative path:
chmod +x sunspider
./sunspider --shell=/home/username/v8/shell --args=--expose_gc
Don't forget the --expose_gc argument for the v8 shell. Otherwise it will not work, as the Sunspider benchmarks do a garbage collection between each benchmark, and v8 does not expose GC functions by default.
edit: typo...