1

在过去的几天里,这一直让我心烦意乱。我也不确定是在 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$
4

1 回答 1

2

gcc不支持吗?

GCC 很好地支持它,你混淆了来自 Eclipse 的错误,说它的语法突出显示和自动完成无法识别std::function来自 GCC 的编译器错误。他们不是一回事。

__GXX_EXPERIMENTAL_CXX0X__在 Eclipse 中添加了路径和符号。

这说明了如何让 Eclipse CDT 识别 C++11 名称:http ://wiki.eclipse.org/CDT/User/FAQ#CDT_does_not_recognize_C.2B.2B11_features

于 2012-08-12T19:25:35.060 回答