Linux, MinGW, Cygwin 環境での SDL インストール

Linux であれば、使っているディストリビューションによっては SDL が既にインストールされている可能性がありますし、パッケージ管理ツールで簡単にインストールできるかもしれません。

以下では、インストールをソースコードから行う場合のコマンド例を示します。
必要なパッケージは、SDLSDL_netSDL_ttf、freetype です。


SDL のコンパイル例

  % tar zxvf SDL-1.2.9.tar.gz
  % cd SDL-1.2.9
  % ./configure
  % make
  # make install 


SDL_net のコンパイル例

  % tar zxvf SDL_net-1.2.5.tar.gz
  % cd SDL_net-1.2.5
  % ./configure
  % make
  # make install 


freetype のコンパイル例

  % tar zxvf freetype-2.1.9.tar.gz
  % cd freetype-2.1.9
  % ./configure
  % make
  # make install 


SDL_ttf のコンパイル例

  % tar zxvf SDL_ttf-2.0.7.tar.gz
  % cd SDL_ttf-2.0.7
  % ./configure
  % make
  # make install 

以上です。


Generated on Mon Apr 13 22:52:06 2009 by  doxygen 1.5.7.1