Home >Database >Mysql Tutorial >基于Cmake编译安装MySQL 5.5

基于Cmake编译安装MySQL 5.5

WBOY
WBOYOriginal
2016-06-07 17:28:381186browse

cmake的重要特性之一是其独立于源码(out-of-source)的编译功能,即编译工作可以在另一个指定的目录中而非源码目录中进行,这可以

cmake的重要特性之一是其独立于源码(out-of-source)的编译功能,即编译工作可以在另一个指定的目录中而非源码目录中进行,这可以保证源码目录不受任何一次编译的影响,因此在同一个源码树上可以进行多次不同的编译,,如针对于不同平台编译。

一、安装cmake(mysql-5.5)

1、确保安装开发环境
Development Libraries
Development Tools

2、所需软件包
cmake-2.8.8.tar.gz
mysql-5.5.28.tar.gz

3、编译之前需要先同步一下时间

[root@station45 ~]# tar xf cmake-2.8.8.tar.gz
[root@station45 ~]# cd cmake-2.8.8
[root@station45 cmake-2.8.8]# ./configure

[root@station45 cmake-2.8.8]# make && make install
如果想清理此前的编译所生成的文件,则需要使用如下命令:
make clean
rm CMakeCache.txt

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn