Want to ask after I installed gcc on linux, where can I found and open it. I need that to compile c/c++ code. FYI, I'm using centos 5.5 and gcc installed with yum install gcc gcc-c++ autoconf automake command and successfull.
Thank you
gcc
はコマンド ライン プログラムであり、プログラムを作成、コンパイル、実行するためのグラフィカル環境ではありません。gedit
or vim
or orなどのテキスト エディターでファイルを作成しますemacs
。Unix/Linux には IDE (統合開発環境) もありますが、私は個人的には .NET で自分のものを書くのが好きなxemacs
ので、それらについてはコメントしません。
Open a terminal/console and change to the directory (with cd path/to/directory
) with the source code you want to compile.
With the command gcc sourcefile1.c sourcefile2.c -o output
you compile your own simple programs.
When you've downloaded a complexer program there is normally a configure file and a make file. First execute ./configure
which will check if your system satisfies all dependencies for the program and then execute make
which build (compiles) everything.
Most programs support sudo make install
too, which will install the program on the whole system (normally in /usr/bin/).