2008年2月9日土曜日

C言語の実行環境 Ubuntu7.04

C言語のコンパイルのためのメモ。


コマンド
gcc -o test test.c

test.cをコンパイルして、実行形式ファイルのtestを作る。-o を省略すると、a.out という名前のファイルができる。


初め、このコマンドでコンパイルするとエラーメッセージ
error: stdio.h: No such file or directory
が出てくる。

libc6-devパッケージをインストールするとコンパイルできるようになった。
linux-libc-devも一緒にインストールされた。


参考サイト
http://sitebites.homeip.net/annex/UbuntuTips/#id7
http://forum.ubuntulinux.jp/viewtopic.php?id=51

0 件のコメント: