適切な場所と思われる場所を指すようにプロファイルが更新されます。
PATH=${PATH}:/Applications/Xcode.app/Contents/Developer/usr/bin:${PATH}
コンパイラが見つかりました
[11:39:32] ~: $ which g++
/Applications/Xcode.app/Contents/Developer/usr/bin//g++
[11:39:35] ~: $ which gcc
/Applications/Xcode.app/Contents/Developer/usr/bin//gcc
Hello world は次のようになります。
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
コマンドラインとTextMateの両方から実行できません
[11:40:15] Desktop: $ g++ untitled.cpp
untitled.cpp:1:20: error: iostream: No such file or directory
untitled.cpp: In function ‘int main()’:
untitled.cpp:6: error: ‘cout’ was not declared in this scope
パスに他に何が必要で、不足していますか?