MySQL 5.5分支,今天终于发布 5.5.8 GA了.

一贯风格,尝鲜,马上编译之. 折腾了一段时间,发现需要用cmake进行配置了

  1. 先安装cmake和ccmake

    sudo apt-get install cmake cmake-curses-gui libncurses5-dev

  2. 下载并解压mysql-5.5.8.tar.gz到mysql-5.5.8

    wget -o mysql-5.5.8.tar.gz http://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.8.tar.gz/from/http://mirror.csclub.uwaterloo.ca/mysql/ tar xvf mysql-5.5.8.tar.gz cd mysql-5.5.8

  3. 然后执行ccmake进行配置,建议将CMAKE_BUILD_TYPE设置为Release

    sudo ccmake . #或者 cmake -i 对话式配置

  4. 如果嫌第三步麻烦,那么直接执行

    sudo cmake .

  5. 剩下的就是常规操作了

    #编译 sudo make #跑一下测试,全部Pass sudo make test #安装 sudo make install



blog comments powered by Disqus

Published

2010-12-16 13:53:13

Categories


Tags

Fork me on GitHub