mysql dbuild_config_mysql编译参数详解(./configure)

1.--prefix=PREFIX:指定程序安装路径;

2.--enable-assembler:使用汇编模式;(文档说明:compiling in x86 (and sparc) versions of common string operations, which should result in more performance.汇编x86的普通操作符,可以提高性能)

3.--enable-local-infile:启用对LOAD DATA LOCAL INFILE语法的支持(默认不支持);

4.--enable-profiling:Build a version with query profiling code (req.community-features)

5.--enable-thread-safe-client:使用编译客户端;(让客户端支持线程的意思)

6.--with-big-tables:启用32位平台对4G大表的支持;

7.--with-charset=CHARSET:指定字符集;

8.--with-collation=:默认collation;

9.--with-extra-charsets=CHARSET,CHARSET,...:指定附加的字符集;

10.--with-fast-mutexes:Compile with fast mutexes

11.--with-readline:

12.--with-ssl:启用SSL的支持;

13.--with-server-suffix=:添加字符串到版本信息;

14.--with-embedded-server:编译embedded-server,构建嵌入式MySQL库;

15.--with-pthread:强制使用pthread类库;

16.--with-mysqld-user=:指定mysqld守护进程的用户;

17.--with-mysqld-ldflags=:静态编译MySQL服务器端;(静态链接提高13%性能)

18.--with-client-ldflags=:静态编译MySQL客户端;(静态链接提高13%性能)

19.--with-plugins=PLUGIN,PLUGIN 等等等(MySQL服务器端支持的存储引擎组件(默认为空),可选值较多:

partition:MySQL Partitioning Support;

daemon_example:This is an example plugin daemon;

ftexample:Simple full-text parser plugin;

archive:Archive Storage Engine;

blackhole:Basic Write-only Read-never tables;

csv:Stores tables in text CSV format,强制安装;

example:Example for Storage Engines for developers;

federated:Connects to tables on remote MySQL servers;

heap:Volatile memory based tables,强制安装;

ibmdb2i:IBM DB2 for i Storage Engine;

innobase:Transactional Tables using InnoDB;

innodb_plugin:Transactional Tables using InnoDB;

myisam:Traditional non-transactional MySQL tables,强制安装;

myisammrg:Merge multiple MySQL tables into one,强制安装;

ndbcluster:High Availability Clustered tables;)

20.--with-plugin-PLUGIN:强制指定的插件链接至MySQL服务器;

21.--with-zlib-dir=:向MySQL提供一个自定义的压缩类库地址;

22.--without-server:仅安装MySQL客户端;

23.--without-query-cache:不要编译查询缓存;

24.--without-geometry:不要编译geometry-related部分;

25.--without-debug:编译为产品版,放弃debugging代码;

26.--without-ndb-debug:禁用special ndb debug特性;

基于以上,我的配置:

./configure --prefix=/usr/local/mysql/

--with-server-suffix=yu

--enable-assembler

--enable-local-infile

--enable-thread-safe-client

--with-big-tables

--with-charset=utf8

--with-extra-charsets=gbk,gb2312,utf8,ascii

--with-readline

--with-ssl

--with-embedded-server

--with-pthread

--with-mysqld-user=mysql

--with-mysqld-ldflags=-all-static

--with-client-ldflags=-all-static

--with-plugins=partition,innobase,innodb_plugin

MySQL自5.5版本以后,就开始使用CMake编译工具了,因此,你在安装源文件中找不到configure文件是正常的。很多人下到了新版的MySQL,因为找不到configure文件,不知道该怎么继续下去。有没有一篇可供参考的文章呢?其实在http://forge.mysql.com网站上有一篇文章,专门介绍了如何用CMake工具进行新版MySQL的编译安装。

介绍

本页将介绍常用编译工具的一些配置选项和这些配置选项在CMake中又是如何进行配置的,然后介绍如何使用CMake工具来构建编译MySQL。

命令调用语法

下表列出了常用编译工具的调用语法和等效的CMake命令。“.”表示你当前的工作目录路径,请根据你所在的目录,适当的替换掉路径“.”。

configure命令

CMake命令

./configure

cmake .

./configure --help

cmake . -LH or ccmake .

在重新配置或重新构建之前,需要先清除旧的对象文件和缓存信息,方法如下:

Autotools:

make clean

rm config.cache

CMake (Unix/Linux):

make clean

rm CMakeCache.txt

CMake (Windows):

devenv MySQL.sln /clean

del CMakeCache.txt

安装参数选项

在下表中,“CMAKE_INSTALL_PREFIX”的值表示的是安装根目录,其他参数值的路径都是相对于根目录的,当然你也可以直接使用绝对路径,具体如下:

参数值说明

配置选项

CMak选项

安装根目录

--prefix=/usr

-DCMAKE_INSTALL_PREFIX=/usr

mysqld目录

--libexecdir=/usr/sbin

-DINSTALL_SBINDIR=sbin

数据存储目录

--localstatedir=/var/lib/mysql

-DMYSQL_DATADIR=/var/lib/mysql

配置文件(my.cnf)目录

--sysconfdir=/etc/mysql

-DSYSCONFDIR=/etc/mysql

插件目录

--with-plugindir=/usr/lib64/mysql/plugin

-DINSTALL_PLUGINDIR=lib64/mysql/plugin

手册文件目录

--mandir=/usr/share/man

-DINSTALL_MANDIR=share/man

共享数据目录

--sharedstatedir=/usr/share/mysql

-DINSTALL_SHAREDIR=share

Library库目录

--libdir=/usr/lib64/mysql

-DINSTALL_LIBDIR=lib64/mysql

Header安装目录

--includedir=/usr/include/mysql

-DINSTALL_INCLUDEDIR=include/mysql

信息文档目录

--infodir=/usr/share/info

-DINSTALL_INFODIR=share/info

存储引擎选项

存储引擎是以插件的形式存在的,所以,该选项可以控制插件的构建,比如指定使用某个特定的引擎。

--with-plugins配置选项接受两种形式的参数值,它没有对应的CMake配置参数:

① 以逗号(,)分隔的引擎名称列表;

② a "group name" value that is shorthand for a set of engines

在CMake中,引擎被作为单个的选项来进行控制。假设有以下配置选项:

--with-plugins=csv,myisam,myisammrg,heap,innobase,archive,blackhole

上面的参数指定MySQL数据库可以支持哪些数据库引擎,将上述编译选项转换成CMake编译选项时,下面的几个引擎名字可以被省略,因为编译时,默认就支持:

csv myisam myisammrg heap

然后使用下面的编译参数,以启用InnoDB、ARCHIVE和BLACKHOLE引擎支持:

-DWITH_INNOBASE_STORAGE_ENGINE=1

-DWITH_ARCHIVE_STORAGE_ENGINE=1

-DWITH_BLACKHOLE_STORAGE_ENGINE=1

当然也可以使用“ON”来替代数字1,它们是等效的。

如果你想除去对某种引擎的支持,则在CMake编译选项中使用-DWITHOUT__STORAGE_ENGINE,例如:

-DWITHOUT_EXAMPLE_STORAGE_ENGINE=1

-DWITHOUT_FEDERATED_STORAGE_ENGINE=1

-DWITHOUT_PARTITION_STORAGE_ENGINE=1

库文件加载选项

该选项指明Mysql使用库的情况:

参数值说明

配置选项

CMak选项

readline库

--with-readline

-DWITH_READLINE=1

SSL库

--with-ssl=/usr

-DWITH_SSL=system

zlib库

--with-zlib-dir=/usr

-DWITH_ZLIB=system

libwrap库

--without-libwrap

-DWITH_LIBWRAP=0

其他选项

CMake编译选项支持大部分之前版本的MySQL编译选项,新老编译选项的差别在于:之前的是小写,现在全部变成了大写,之前采用双横线,现在使用单横线,之前使用的破折号,现在取而代之的是使用下划线,例如:

--with-debug => WITH_DEBUG=1

--with-embedded-server => WITH_EMBEDDED_SERVER

下面是编译MySQL的新老参数对照表:

参数值说明

配置选项

CMak选项

TCP/IP端口

--with-tcp-port-=3306

-DMYSQL_TCP_PORT=3306

UNIX socket文件

--with-unix-socket-path=/tmp/mysqld.sock

-DMYSQL_UNIX_ADDR=/tmp/mysqld.sock

启用加载本地数据

--enable-local-infile

-DENABLED_LOCAL_INFILE=1

扩展字符支持

--with-extra-charsets=all(默认:all)

-DEXTRA_CHARSETS=all(默认:all)

默认字符集

--with-charset=utf8

-DDEFAULT_CHARSET=utf8

默认字符校对

--with-collation=utf8_general_ci

-DDEFAULT_COLLATION=utf8_general_ci

Build the server

--with-server

嵌入式服务器

--with-embedded-server

-DWITH_EMBEDDED_SERVER=1

libmysqld权限控制

--with-embedded-privilege-control

安装文档

--without-docs

Big tables支持

--with-big-tables, --without-big-tables

mysqld运行用户

--with-mysqld-user=mysql

-DMYSQL_USER=mysql

调试模式

--without-debug(默认禁用)

-DWITH_DEBUG=0(默认禁用)

GIS支持

--with-geometry

社区功能

--enable-community-features

Profiling

--disable-profiling(默认启用)

-DENABLE_PROFILING=0(默认启用)

pstack

--without-pstack

无(新版移除该功能)

汇编字符串函数

--enable-assembler

构建类型

--build=x86_64-pc-linux-gnu

没有等效参数

交叉编译主机

--host=x86_64-pc-linux-gnu

没有等效参数

客户端标志

--with-client-ldflags=-lstdc++

线程安全标志

--enable-thread-safe-client

注释存储类型

--with-comment='string'

-DWITH_COMMENT='string'

Shared/static binaries

--enable-shared --enable-static

内存使用控制

--with-low-memory

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
make for plat=atlas310 cross=aarch64-ascend310-linux-gnu- LDFLAGS=-Wl,--gc-sections -static -L/home/257916/server/test/v1.1/Trunk/build/../src/thirdpart/libs/atlas310 -L/home/257916/server/test/v1.1/Trunk/build/../lib/atlas310 -ldw -lbs -lpthread -lm EXTRA_CFLAGS=-DSVN_VERSION="\"64670"\" -I /net -DOSA_MODULE_NAME=Spectrum-Convert@64670 -DBUILD_DATE="\"Mon, 24 Jul 2023 19:48:54 +0800"\" CFLAGS=-D_GNU_SOURCE -I/home/257916/server/test/v1.1/Trunk/build/../include -I/home/257916/server/test/v1.1/Trunk/build/../src/base/include -I/home/257916/server/test/v1.1/Trunk/build/../src/base/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/decode/include -I/home/257916/server/test/v1.1/Trunk/build/../src/decode/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/fourier/include -I/home/257916/server/test/v1.1/Trunk/build/../src/fourier/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/include -I/home/257916/server/test/v1.1/Trunk/build/../src/service/include -I/home/257916/server/test/v1.1/Trunk/build/../src/service/test/include -I/home/257916/server/test/v1.1/Trunk/build/../src/draw/include -I/home/257916/server/test/v1.1/Trunk/build/../src/draw/test/include -I/home/257916/server/test/v1.1/Trunk/build/../tools/include -fPIC -ffunction-sections -fdata-sections -g -Wall -O1 -c -o ############################################################ mkdir -p /home/257916/server/test/v1.1/Trunk/build/../bin/atlas310 aarch64-ascend310-linux-gnu-g++ -o draw test/src/draw_pic_test.o -Wl,--gc-sections -static -L/home/257916/server/test/v1.1/Trunk/build/../src/thirdpart/libs/atlas310 -L/home/257916/server/test/v1.1/Trunk/build/../lib/atlas310 -ldw -lbs -lpthread -lm /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: Relocations in generic ELF (EM: 62) /opt/Atlas310-ascend/toolkit/toolchain/hcc/bin/../lib64/gcc/aarch64-target-linux-gnu/7.3.0/../../../../aarch64-target-linux-gnu/bin/ld: test/src/draw_pic_test.o: error adding symbols: file in wrong format collect2: error: ld returned 1 exit status make[1]: *** [draw] Error 1 make[1]: Leaving directory `/home/257916/server/test/v1.1/Trunk/src/draw' make: *** [draw] Error 2
最新发布
07-25

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值