在过去的几天里,这一直让我心烦意乱。我也不确定是在 ask ubuntu 还是在这里发布这个。我选择这里是为了获得更广泛的基于程序员的受众。
我是 Ubuntu 和 GCC 的新手,但是我已经在 Windows 上编程 C++ 大约 5 年了。这个简单的 C++11 代码示例在我的装有 VS2010 的 Windows 机器上运行良好。
#include <iostream>
#include <functional>
std::function<void()> func;
int main() {
std::cout << "!!!Hello World!!!" << std::endl; // prints !!!Hello World!!!
return 0;
}
使用 Eclipse CDT (Ubuntu 12.04),我得到了错误Symbol 'function' could not be resolved
。
我已经确定build-essentials
安装了。
我已将其添加/usr/include/c++/4.6.3
到 Eclipse 中。
我__GXX_EXPERIMENTAL_CXX0X__
在 Eclipse 中添加了路径和符号。
我已经在命令行上尝试过 -std=c++11 。
我已经在命令行上尝试过 -std=c++0x 。
我在这里遵循了接受的答案:https ://askubuntu.com/questions/113291/how-do-i-install-gcc-4-7并安装了 gcc 4.7
gcc不支持吗?
我已经检查过了auto
,它可以工作,但是类似的东西unique_ptr
也不起作用,与上述相同的错误。
再次抱歉,我是 Linux 新手。
编辑: 根据nm的要求:
neil@ubuntu12:~/projects/Test/Test$ g++ -v;g++ -std=c++0x -o main main.cpp
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
neil@ubuntu12:~/projects/test$