我没有C ++经验,想学习。我有XCode但IDE 让我感到困惑,对我目前的水平来说似乎太先进了。
我从这个http://www.cplusplus.com/doc/tutorial/program_structure/
开始// my first program in C++
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
我使用C ++格式将其输入SublimeText2,然后将文件保存在
中Ryan>Desktop>ApplicationDevelopment>Sandbox as helloworld.cpp
我安装了XCode并找到了How to run C/C++ in a Unix console/Mac terminal?
我去了终端,导航到它所在的目录并尝试:
make helloworld.cpp
它返回了:
make: Nothing to be done for 'helloworld.cpp'
更新,希望以下格式清晰
$ g ++
i686-apple-darwin10-g ++ - 4.2.1:没有输入文件
$ g ++ helloworld.cpp -o outputname.bin
$(没有返回)
$ g ++ helloworld.cpp helloApp ./helloApp
i686-apple-darwin10-g ++ - 4.2.1:helloApp:没有这样的文件或目录
i686-apple-darwin10-g ++ - 4.2.1:./ helloApp:没有这样的文件或目录
$ g ++ helloworld.cpp -o helloApp ./helloApp
ld:在./helloApp中,无法与主可执行文件链接
collect2:ld返回1退出状态