我不在这里,因为我不知道杰克关于C和这样的编译器,除了根据我读过的tut - 我已经自制安装gcc-4.9,链接它,并在我的。 bash_profile有cc = gcc-4.9 - 希望这会允许我安装Ruby 2.1.1,因为先前的尝试失败了,抱怨以下内容:
note: unrestricted unions only available with -std=c++11 or -std=gnu++11
我访问过gcc网站,看到4.9包含c ++ 11支持,所以我很困惑为什么它没有按照上面的错误制作Ruby,并且下面是完整的错误输出:
make
CC = /usr/local/bin/g++-4.9
LD = ld
LDSHARED = /usr/local/bin/g++-4.9 -dynamic -bundle
CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -pipe
XCFLAGS = -D_FORTIFY_SOURCE=2 -fstack-protector -fno-strict-overflow -fvisibility=hidden -DRUBY_EXPORT -fPIE
CPPFLAGS = -I/usr/local/Cellar/openssl/1.0.1g/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -I. -I.ext/include/x86_64-darwin13.0 -I./include -I.
DLDFLAGS = -Wl,-undefined,dynamic_lookup -Wl,-multiply_defined,suppress -L/usr/local/Cellar/openssl/1.0.1g/lib -fstack-protector -Wl,-u,_objc_msgSend -pie -framework CoreFoundation
SOLIBS = -lgmp
Using built-in specs.
COLLECT_GCC=/usr/local/bin/g++-4.9
COLLECT_LTO_WRAPPER=/usr/local/Cellar/gcc49/4.9.0/libexec/gcc/x86_64-apple-darwin13.1.0/4.9.0/lto-wrapper
Target: x86_64-apple-darwin13.1.0
Configured with: ../configure --build=x86_64-apple-darwin13.1.0 --prefix=/usr/local/Cellar/gcc49/4.9.0 --enable-languages=c,c++,objc,obj-c++ --program-suffix=-4.9 --with-gmp=/usr/local/opt/gmp4 --with-mpfr=/usr/local/opt/mpfr2 --with-mpc=/usr/local/opt/libmpc08 --with-cloog=/usr/local/opt/cloog018 --with-isl=/usr/local/opt/isl011 --with-system-zlib --enable-version-specific-runtime-libs --enable-libstdcxx-time=yes --enable-stage1-checking --enable-checking=release --enable-lto --disable-werror --enable-plugin --disable-nls --enable-multilib
Thread model: posix
gcc version 4.9.0 (GCC)
compiling miniprelude.c
In file included from vm_core.h:24:0,
from miniprelude.c:8:
method.h:84:19: error: member 'rb_method_attr_t rb_method_definition_struct::<anonymous union>::attr' with copy assignment operator not allowed in union
rb_method_attr_t attr;
^
method.h:84:19: note: unrestricted unions only available with -std=c++11 or -std=gnu++11
In file included from miniprelude.c:8:0:
vm_core.h:674:59: error: use of enum 'iseq_type' without previous declaration
VALUE rb_iseq_new(NODE*, VALUE, VALUE, VALUE, VALUE, enum iseq_type);
^
vm_core.h:677:76: error: use of enum 'iseq_type' without previous declaration
VALUE rb_iseq_new_with_bopt(NODE*, VALUE, VALUE, VALUE, VALUE, VALUE, enum iseq_type, VALUE);
^
vm_core.h:678:75: error: use of enum 'iseq_type' without previous declaration
VALUE rb_iseq_new_with_opt(NODE*, VALUE, VALUE, VALUE, VALUE, VALUE, enum iseq_type, const rb_compile_option_t*);
^
make: *** [miniprelude.o] Error 1
正如我写的那样,我真的不在我的深处,所以我将非常感谢任何帮助解决这个问题,以便我可以安装Ruby 2.1.1。
我使用的./configure命令是:
./configure --prefix="$HOME/.rbenv/versions/2.1.1" --with-opt-dir=/usr/local/Cellar/openssl/1.0.1g
我通过自制软件安装了Rbenv,所以它的bin不在〜。/ rbenv中,而是在我的PATH和sym由homebrew链接:
/usr/local/bin/rbenv -> ../Cellar/rbenv/0.4.0/bin/rbenv
我看不出有任何关于这方面的抱怨,这让我觉得我可能使用了错误的C编译器,但我没有看到其他人有相同的错误,他们对自制软件的gcc-4.9或apple-gcc42,但说实话 - 我不知道如何确定使用哪个。
任何帮助都表示赞赏,因为我浪费了很长时间而不是实际开发网络应用程序。
由于
答案 0 :(得分:0)
错误消息
note: unrestricted unions only available with -std=c++11 or -std=gnu++11
表示只有在使用选项gcc
或g++
-std=c++11
(或-std=gnu++11
)时才能使用某些功能
因此,gcc 4.9包含c ++ 11支持,但默认情况下不启用它。添加命令行选项-std=c++11
以启用支持。这些选项通常包含在CFLAGS
变量中。或者您甚至可以尝试将其添加到您的CC中。
我认为Ruby的configure
脚本中可能存在错误。此脚本应检查所有需要的功能,并将正确的标志组烹饪到CFLAGS
,但在您的情况下,它无法将-std=c++11
添加到标志中。