RVM を使用して 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
ましたが、同じエラーが発生しています。サポートが限られているため、これを避けたいと思います。
誰でも実行可能な手順を持っていますか?
編集: