一 前言
autotool简化了Makefile的构建难度,让我们方便的生成复杂项目的Makefile;
CMake是一个跨平台的安装(编译)工具,可以用简单的语句来描述所有平台的安装(编译过程)。他能够输出各种各样的makefile或者project文件,能测试编译器所支持的C++特性,类似UNIX下的automake,可以输出不同IDE的工程文件如下:
说实话,autotool和CMake都比较复杂,autotool需要写Make.am, CMake 要写CMakeLists都有自己语法,还要仔细看说明,了解语法,基本上不常用,过几天还要重新开。
xmake 是一个基于 Lua 的轻量级跨平台构建工具,使用 xmake.lua 维护项目构建,相比 makefile/CMakeLists.txt,配置语法更加简洁直观,对新手非常友好,短时间内就能快速入门,能够让用户把更多的精力集中在实际的项目开发上,既能够像 Make/Ninja 那样可以直接编译项目,也可以像 CMake/Meson 那样生成工程文件,还有内置的包管理系统来帮助用户解决 C/C++依赖库的集成使用问题,从功能上我觉得它比CMake的功能更强大。
二 安装
非常简单:
# 使用curl
bash <(curl -fsSL https://xmake.io/shget.text)
#或者使用wget
bash <(wget https://xmake.io/shget.text -O -)
# powershell
Invoke-Expression (Invoke-Webrequest 'https://xmake.io/psget.text' -UseBasicParsing).Content
三 编译
编译的时候,可以在源码目录直接运行xmake,会自动生成xmake.lua ,由于自动生成的无法自动设置依赖,所以需要添加下依赖的库和包含的头文件的路径,设置些编译选项,简单的如下,不用解释看看就明白.
add_rules("mode.debug", "mode.release")
target("trunk")
set_kind("static")
add_includedirs("/usr/include/mysql","/usr/include")
add_files("*.c")
target("flow_deal_main")
set_kind("binary")
add_files("flow_deal_main.c")
add_includedirs("/usr/include/mysql","/usr/include")
add_deps("trunk")
add_cxflags("-Wall" ,"-O0", "-m64 -pg -g -D_REENTRANT -D_THREAD_SAFE -std=gnu99")
add_ldflags("-L/usr/lib64/mysql", "-lmysqlclient", {force = true})
add_ldflags("-L/usr/lib64","-lpthread",{force=true})
改好之后再次执行xmake,然后就会在当前目录下生成build目录,下面有编译好的文件,如下:
[root@localhost trunk]# tree ./build
./build
└── linux
└── x86_64
└── release
├── flow_deal_main
├── libtrunk.a
如果要执行程序,也简单,通过以下命令直接调用flow_deal_main执行。
# xmake run
四 包管理功能
做过c、c++开发的朋友都会有找库的痛苦,有时候要编译一个库,比如clickhouse,这个库又依赖其他的库,需要我们自己去搜索,下载,解压,编译安装,不同的平台编译方法有差异,编译好了又有可能发现需要的库的版本和我们下的不一致,工作要重头再来。 其他语言像java有maven对依赖的jar进行管理,像js有npm来做包管理,rust有cargo,主要这些语言要么背靠一个大公司,要么是一个独立的公司在运作,所以包管理作的都比较不错。
c、或c++程序员就比较痛苦了,没有统一的包管理,都没有大规模流行起来,以至于很长时间我都不知道c、c++也有包管理器,后来发现c、c++ 也有些包管理器,比如微软的Vpckg在visual studio下使用;conan 有可能成为事实标准的包管理器,配合cmake,应用还是比较广泛。
作为今天的主角xmake同样具有包管理功能,具体如下:
PS F:\ccode\test> xrepo rm-repo conan
remove global repository(conan): ok!
PS F:\ccode\test> xrepo install conan https://github.com/conan-io/conan-center-index
error: package(conan) not found!
error: execv(xmake require -j 12 --extra={system=false} conan https://github.com/conan-io/conan-center-index) failed(-1)
error: Cloning into 'C:\Users\Think\AppData\Local\.xmake\repositories\conan'...
fatal: unable to access 'https://hub.fastgit.xyz/conan-io/conan-center-index/': SSL certificate problem: certificate has expired
error: execv(xmake repo --add --global conan https://github.com/conan-io/conan-center-index) failed(-1)
PS F:\ccode\test> xrepo list-repo
global repositories:
vcpkg https://github.com/microsoft/vcpkg
conan https://github.com/conan-io/conan-center-index
build-artifacts https://gitee.com/xmake-mirror/build-artifacts.git main
xmake-repo https://gitee.com/tboox/xmake-repo.git master
builtin-repo D:\Program Files\xmake\repository
5 repositories were found!
PS F:\ccode\test> xrepo rm-repo conan
remove global repository(conan): ok!
PS F:\ccode\test> xrepo search zlib
The package names:
zlib:
-> chromium_zlib-2022.02.22: zlib from chromium (in xmake-repo)
-> zlib-v1.2.11: A Massively Spiffy Yet Delicately Unobtrusive Compression Library (in xmake-repo)
-> zlib-ng-2.0.5: zlib replacement with optimizations for next generation systems. (in xmake-repo)
PS F:\ccode\test> xrepo install zlib
note: install or modify (m) these packages (pass -y to skip confirm)?
in xmake-repo:
-> zlib v1.2.11 [vs_runtime:"MT"]
please input: y (y/n/m)
y
=> install zlib v1.2.11 .. ok
在xmake.lua下写就更简单了,增加一句话就行:
add_requires("zlib 1.2.11")
在build的时候自动编译,非常方便。关键还可以用其他包管理器的包,比如:
add_requires("vcpkg::zlib 1.2.11")
target("test")
add_files("src/*.c")
add_packages("vcpkg::zlib")
但是我测试了报错,因为我的vpckg没装好,安装如下:
> git clone https://github.com/microsoft/vcpkg
> .\vcpkg\bootstrap-vcpkg.bat
集成下:
>vcpkg integrate install
或
> xmake f --vcpkg=d:\vcpkg
注意添加代理,这样访问github会快:
xmake g --proxy_pac=github_mirror.lua
至于加载conan的库,需要下载exe文件,安装后,配置path路径,然后就可以使用了如下:
add_requires("conan::poco/1.9.4", {alias = "poco", debug = true})
build结果如下:
PS F:\ccode\test> xmake
checking for Microsoft Visual Studio (x64) version ... 2019
note: install or modify (m) these packages (pass -y to skip confirm)?
in conan:
-> conan::poco/1.9.4 latest [debug:y, vs_runtime:"MT"]
please input: y (y/n/m)
y
=> install conan::poco/1.9.4 latest .. ok
[ 25%]: compiling.release src\main.c
[ 50%]: linking.release test.exe
[100%]: build ok!
五 windows下使用xmake
xmake也可以在windows下安装运行,配合vscode非常方便:
5.1 下载配套版本安装
windows下配置path,增加xmake.exe所在路径:
[https://github.com/xmake-io/xmake/releases](https://github.com/xmake-io/xmake/releases)
5.2 vscode 安装插件
安装c、c++插件
安装codelldb 插件
codelldb 方便调试c、c++程序,不过这个插件安装经常超时错误,建议采用离线安装方法。
安装xmake插件
5.3 新建xmake的c工程项目过程
- 先建个测试目录test,利用code 打开。
-
按ctrl+shit+p调出命令面板,输入XMake中的XMake: NewFIles
- 新建C工程。
-
点底部的build,编译程序
- 点击右边的三角即可以运行
- 点击设置中断点后,点击右边的bug标识,进行运行代码调试。
六 参考
[Conan教程(4)—— 使用包_jaronho的博客-CSDN博客_conan 使用](https://blog.csdn.net/hezhanran/article/details/112006992)
[C/C++ Open Source Package Manager (conan.io)](https://conan.io/downloads.html)
[microsoft/vcpkg: C++ Library Manager for Windows, Linux, and MacOS (github.com)](https://github.com/microsoft/vcpkg)
[Conan C++包管理教程 - 简书 (jianshu.com)](https://www.jianshu.com/p/a983966ffb16)
[https://docs.conan.io/en/latest/getting_started.html](https://docs.conan.io/en/latest/getting_started.html)
[http://blog.guorongfei.com/2018/04/23/conan-tutorial/](http://blog.guorongfei.com/2018/04/23/conan-tutorial/)
[https://www.jianshu.com/p/eab110c93e4d](https://www.jianshu.com/p/eab110c93e4d)