-3

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

4

2 に答える 2

1

gccはコマンド ライン プログラムであり、プログラムを作成、コンパイル、実行するためのグラフィカル環境ではありません。geditor vimor orなどのテキスト エディターでファイルを作成しますemacs。Unix/Linux には IDE (統合開発環境) もありますが、私は個人的には .NET で自分のものを書くのが好きなxemacsので、それらについてはコメントしません。

于 2013-02-19T02:39:06.580 に答える
0

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/).

于 2013-02-19T06:36:02.820 に答える