RVMを使用して1.9.3をインストールしようとしています。クリーンなライオンインストールにRuby 1.9.3をインストールできない
私make.log
compiling readline.c
readline.c:1499:9: error: use of undeclared identifier 'username_completion_function'; did you mean 'rl_username_completion_function'?
rl_username_completion_function);
^
readline.c:69:42: note: expanded from macro 'rl_username_completion_function'
# define rl_username_completion_function username_completion_function
^
/usr/local/include/readline/readline.h:443:14: note: 'rl_username_completion_function' declared here
extern char *rl_username_completion_function PARAMS((const char *, int));
^
1 error generated.
make[2]: *** [readline.o] Error 1
make[1]: *** [ext/readline/all] Error 2
make: *** [build-ext] Error 2
に私はSLで前にこの問題に直面し、これらのエラーを取得します。私はXcode 4.3.2をインストールしました(また、コマンドラインツールをインストールしました)。私はreadline 6.2.2をインストールしました。
export ARCHFLAGS="-arch x86_64"
を.bash_login
に追加しました。
私もrvm install 1.9.3 --with-gcc=clang
を試しましたが、同じエラーが発生しています。サポートが限られているため、やりたくないのです。
誰でも実行可能な手順がありますか?
編集:
Link to related open Ruby ticket
に向かってRVM? [1.9.3-p125](http://www.ruby-lang.org/en/news/2012/02/16/ruby-1-9-3-p125-is-rele/)から、clangは正式にサポートされます。 –
ああ、その場合は問題ありませんが、clangでインストールしようとすると、同じエラーが表示されます –
手動でreadlineをインストールしましたか?結局、OS Xが付属しています。 –