因此,在使用 Rails 制作了我的第一个脚手架后,我尝试访问它创建的一些页面,并收到以下错误:
ExecJS::RuntimeError in Users#index
Showing /Users/Alice/Desktop/sample_app/app/views/layouts/application.html.erb where line #6 raised:
dyld: unknown required load command 0x80000022
(in /Users/Alice/Desktop/sample_app/app/assets/javascripts/users.js.coffee)
Extracted source (around line #6):
3: <head>
4: <title>SampleApp</title>
5: <%= stylesheet_link_tag "application", :media => "all" %>
6: <%= javascript_include_tag "application" %>
7: <%= csrf_meta_tags %>
8: </head>
9: <body></code>
我查看了这个错误并得出结论,我需要安装 therubyracer gem。我试图通过 gem install therubyracer 来做到这一点。
然后我得到了错误:
ERROR: Error installing therubyracer:
ERROR: Failed to build gem native extension.
/Users/Alice/.rvm/rubies/ruby-1.9.3-p362/bin/ruby extconf.rb
creating Makefile
Unable to find a compiler officially supported by v8.
It is recommended to use GCC v4.4 or higher
Using compiler: g++
File "./gyp-mac-tool", line 167
fd = os.open(lockfile, os.O_RDONLY|os.O_NOCTTY|os.O_CREAT, 0o666)
^
SyntaxError: invalid syntax
所以我运行 gcc -version,我看到我的版本是 i686-apple-darwin9-gcc-4.0.1 我尝试使用 MacPorts 更新我的 gcc,但我似乎无法让它工作。 .
我正在运行 OSX Leopard,我猜这是我所有悲伤的原因。
我从这里做什么?