Centos8 cmake运行失败 undefined symbol archive_write_add_filter_zstd

Posted rayylee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos8 cmake运行失败 undefined symbol archive_write_add_filter_zstd相关的知识,希望对你有一定的参考价值。

centOS8(x86_64 或 aarch64) 系统下 yum或dnf 默认安装的 cmake-3.18.2-11.el8版本,安装后无法使用,出现:
cmake: symbol lookup error: cmake: undefined symbol: archive_write_add_filter_zstd

错误。

该错误解决办法两种:

第一种:

安装 libarchive

dnf install  libarchive  或者 yum install  libarchive

第二种: 安装低版本或者高版本的 cmake

1.卸载cmake程序

yum remove cmake  或  rpm -e cmake

2.重新安装cmake

网址:https://cmake.org/download/ 

3.创建软连接

ln -s  /xx-path/cmake   /usr/bin/cmake

以上是关于Centos8 cmake运行失败 undefined symbol archive_write_add_filter_zstd的主要内容,如果未能解决你的问题,请参考以下文章

VirtualBox安装centos8

Ubuntu使用多线程cmake时出现undefined reference to `pthread_create'

centos8.5 更新失败

linux 线程操作问题undefined reference to 'pthread_create'的解决办法(cmake)

[C++]共享内存cmake报错undefined reference to symbol ‘shm_unlink@@GLIBC_2.2.5

如何在CMake构建中每次运行python脚本?