タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

cmakeに関するamari3のブックマーク (2)

  • MySQLのビルドに欠かせないCMakeを準備する

    前回、MySQLのソースコードを入手する方法を解説しました。今回は、MySQLのビルドに欠かせないツール「CMake」を使う準備をします(編集部) MySQLのビルドにはconfigureを使わない 前回からMySQLの解説に入りました。まずはビルドをするためにソースコードを入手する方法について解説し、公式バイナリが存在することを説明しました。 公式バイナリが存在する場合は、そもそもビルドすべきかという点も検討すべきだと説明しました。筆者は基的にソースコードからのビルドを好みますが、やはり状況に応じて柔軟に対応することが大切です。連載では、前回に説明したようにビルドしなければ不可能なことがある点を重視して、ビルドする道を選びます。 連載では、これまでApache HTTP Server(以下Apache)やPHPをソースコードからビルドしてインストールする方法を解説してきました。細か

    MySQLのビルドに欠かせないCMakeを準備する
    amari3
    amari3 2013/09/02
  • CMakeのconfigureオプション

    The CMake program provides a great deal of control over how you configure a MySQL source distribution. Typically, you do this using options on the CMake command line. For information about options supported by CMake, run either of these commands in the top-level source directory: $> cmake . -LH $> ccmake . You can also affect CMake using certain environment variables. See Environment Variables. Fo

  • 1