CMake在BC-Linux服务器上源码编译和安装

本文讲述的是如何从 GitHub 上下载 CMake 源码并编译安装。
\color{red}{提示:一旦涉及编译源码安装,你需要安装的基本的依赖项有:git、autoconf、automake、libtool、make、cmake。}

从GitHub上下载CMake源码

这里我们使用 git 直接克隆 GitHub 上的 CMake项目源码 到本地编译。
首先用 git 在本地创建了一个 mygithub 的本地仓库,然后将项目源码克隆到这个仓库下。

1. 搜索cmake项目

搜索cmake项目

2. 获取源代码https链接

获取源代码链接

3. 克隆项目到本地仓库

命令:git clone https://github.com/Kitware/CMake.git

[root@localhost mygithub]# git clone https://github.com/Kitware/CMake.git
Cloning into 'CMake'...
remote: Enumerating objects: 382499, done.
remote: Counting objects: 100% (4125/4125), done.
remote: Compressing objects: 100% (2006/2006), done.
remote: Total 382499 (delta 2232), reused 3726 (delta 2046), pack-reused 378374
Receiving objects: 100% (382499/382499), 137.01 MiB | 64.00 KiB/s, done.
Resolving deltas: 100% (290672/290672), done.
Checking out files: 100% (22597/22597), done.
[root@localhost mygithub]# 

进入 CMake 项目文件夹查看

[root@localhost mygithub]# ls -d CMake
CMake
[root@localhost mygithub]# cd CMake/
[root@localhost CMake]# ls
Auxiliary                   CMakeLists.txt            CONTRIBUTING.rst      doxygen.config  README.rst
bootstrap                   CMakeLogo.gif             Copyright.txt         Help            Source
CMakeCPack.cmake            cmake_uninstall.cmake.in  CTestConfig.cmake     Licenses        Templates
CMakeCPackOptions.cmake.in  CompileFlags.cmake        CTestCustom.cmake.in  Modules         Tests
CMakeGraphVizOptions.cmake  configure                 DartConfig.cmake      Packaging       Utilities
[root@localhost CMake]# 

4. 编译源代码

根据 CMake项目仓库 中的 README.rst 文件介绍编译命令如下:

Building CMake from Scratch

UNIX/Mac OSX/MinGW/MSYS/Cygwin

You need to have a C++ compiler (supporting C++11) and a make installed. Run the bootstrap script you find in the source directory of CMake. You can use the --help option to see the supported options. You may use the --prefix=<install_prefix> option to specify a custom installation directory for CMake. Once this has finished successfully, run make and make install.

For example, if you simply want to build and install CMake from source, you can build directly in the source tree:
./bootstrap && make && sudo make install** Or, if you plan to develop CMake or otherwise run the test suite, create a separate build tree: ** mkdir cmake-build && cd cmake-build
$ ../cmake-source/bootstrap && make

由上可知,我们需要一个支持 C++11C++ 编译器,并使用 ./bootstrapmakemake install 这三个命令来编译和安装 cmake。
根据一开始黄色文字提到的,我们需要先安装好 autoconf、automake、libtool、gcc/g++(支持C++11) 这些依赖项。

  • 执行 ./bootstrap

[root@localhost CMake]# ./bootstrap 
---------------------------------------------
CMake 3.26.20230303, Copyright 2000-2023 Kitware, Inc. and Contributors
Found GNU toolchain
C compiler on this system is: gcc   
C++ compiler on this system is: g++  -std=gnu++1y  
Makefile processor on this system is: gmake
g++ has setenv
g++ has unsetenv
>>>>>>>>>>>>>> 省略部分内容显示 <<<<<<<<<<<<<<
---------------------------------------------
-- Configuring done (57.1s)
-- Generating done (1.1s)
-- Build files have been written to: /home/code/mygithub/CMake
---------------------------------------------
CMake has bootstrapped.  Now run gmake.
[root@localhost CMake]# 

此时查看,目录下生成了 Makefile 文件,接下来就可以进行编译和安装了。

  • 执行 make 命令
[root@localhost CMake]# make
[  0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/ProcessUNIX.c.o
[  0%] Building C object Source/kwsys/CMakeFiles/cmsys.dir/Base64.c.o
>>>>>>>>>>>>>> 省略部分编译过程 <<<<<<<<<<<<<<
[100%] Linking C executable pseudo_cppcheck
[100%] Built target pseudo_cppcheck
[100%] Building CXX object Tests/FindPackageModeMakefileTest/CMakeFiles/foo.dir/foo.cpp.o
[100%] Linking CXX static library libfoo.a
[100%] Built target foo
[root@localhost CMake]# 

到这里cmake已经编译成功了。接下来安装cmake。

  • 执行 make install 命令
[root@localhost CMake]# make install
>>>>>>>>>>>>>> 省略部分安装过程 <<<<<<<<<<<<<<
-- Installing: /usr/local/share/emacs/site-lisp/cmake-mode.el
-- Installing: /usr/local/share/aclocal/cmake.m4
-- Installing: /usr/local/share/bash-completion/completions/cmake
-- Installing: /usr/local/share/bash-completion/completions/cpack
-- Installing: /usr/local/share/bash-completion/completions/ctest
[root@localhost CMake]# 
  • 查看 camke 安装的版本
    新安装的 cmake 3.26 安装到了 /usr/local/ 路径下。
[root@localhost cmake]# cd /usr/local/bin/
[root@localhost bin]# ls
ccmake  cmake  cpack  c_rehash  ctest  openssl  re2c  re2go  re2rust
[root@localhost bin]# ./cmake --version
cmake version 3.26.20230303-gc465e0e

CMake suite maintained and supported by Kitware (kitware.com/cmake).
[root@localhost bin]# 
  • 生成cmake3软链接
[root@localhost cmake3.26]# ln -s /usr/local/bin/cmake /usr/bin/cmake3
[root@localhost cmake3.26]# cmake3 --version
cmake version 3.26.0-rc5

CMake suite maintained and supported by Kitware (kitware.com/cmake).
[root@localhost cmake3.26]#

有一次我编译的时候,由于没有安装 openssl 1.1.1 版本软件包,会导致编译出错。如果你也遇到了,可以先尝试安装 openssl 1.1.1 或更高版本后再试。

总结

编译安装使用的依赖软件包:git、autoconf、automake、libtool、make、openssl、C++编译器(支持C++11)等。


好了,cmake 的安装分享完毕,希望帮到你,谢谢阅览。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容