Linux IA-64 上でMySQL
          をコンパイルさせるには、以下の compile
          行を使用します (gcc-2.96
          を使用)。
        
CC=gcc CFLAGS="-O3 -fno-omit-frame-pointer" CXX=gcc \ CXXFLAGS="-O3 -fno-omit-frame-pointer -felide-constructors \ -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql \ "--with-comment=Official MySQL binary" --with-extra-charsets=complex
          IA-64 では、MySQL
          クライアントバイナリは共有ライブラリを使用します。これは、/usr/local/mysql
          以外の場所にバイナリディストリビューションをインストールした場合は、libmysqlclient.so
          をインストールしたディレクトリのパスを、/etc/ld.so.conf
          ファイルまたは LD_LIBRARY_PATH
          環境変数の値に追加する必要があるということを意味します。
        
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.

