-1

最近我按照我找到的步骤在 OSX Yosemite 上安装了新版本的 gcc (4.9):

https://wiki.helsinki.fi/display/HUGG/Installing+the+GNU+compilers+on+Mac+OS+X

但是当我尝试编译一个简单的“Hello World”程序时,编译器会打印下一个:

fatal error: iostream: No such file or directory 
compilation terminated.

这似乎是一个容易解决的问题,但我是使用这个操作系统的新手。所以我不想搞砸。

谢谢!。


代码只是一个“Hello World”:

#include <iostream> 
#include <stdio.h>

using namespace std;

int main()
{
    cout << "Hello World" << endl;  
    return 0;
}

然后我g++像这样在终端上编译:g++ hw.cpp -o hw.o

结果是:fatal error: iostream: No such file or directory

4

1 回答 1

1

您可能正在使用gcc而不是g++,请尝试执行以下操作:

g++ your_source_file.cpp -std=c++11

于 2015-03-16T20:26:37.813 回答