[转帖]打包rpm包报错contains an invalid rpath

打包,rpm,报错,contains,an,invalid,rpath · 浏览次数 : 0

小编点评

The error message indicates an invalid rpath in the binary file `/opt/leptonica/prog/.libs/binmorph5_reg`. The rpath contains a relative path `/usr/local/lib`, which is not recognized by the binary. **Solution:** 1. Verify the contents of the `/opt/leptonica/prog/.libs/binmorph5_reg` file. 2. Check if the file is intended to use a relative path or an absolute path. 3. If the file is intended to use an absolute path, ensure that the `LD_LIBRARY_PATH` environment variable is set correctly. **Example:** To use an absolute path, modify the rpath to the binary: ```bash /usr/local/binmorph5_reg ``` **Additional Notes:** * The `QA_CHECK_RPATHS` variable controls the behavior of the `check-rpaths` and `check-buildroot` scripts. * Setting `QA_CHECK_RPATHS=1` will force the scripts to ignore invalid rpaths. * The `LD_LIBRARY_PATH` variable is a path where the binary will search for libraries. * If you are using a virtual environment, ensure that the required libraries are installed in the appropriate location.

正文

#报错

file '/opt/leptonica/prog/.libs/binmorph5_reg' contains an invalid rpath '/usr/local/lib' in [/usr/local/lib]

#解决

vim ~/.rpmmacros

#注释

%__arch_install_post \
    [ "%{buildarch}" = "noarch" ] || QA_CHECK_RPATHS=1 ; \
    case "${QA_CHECK_RPATHS:-}" in [1yY]*) /usr/lib/rpm/check-rpaths ;; esac \
    /usr/lib/rpm/check-buildroot

与[转帖]打包rpm包报错contains an invalid rpath相似的内容:

[转帖]打包rpm包报错contains an invalid rpath

#报错 file '/opt/leptonica/prog/.libs/binmorph5_reg' contains an invalid rpath '/usr/local/lib' in [/usr/local/lib] #解决 vim ~/.rpmmacros #注释 %__arch_ins

[转帖]【rpm】源码包制作rpm包|修改rpm、重新制作rpm包

目录 前言 安装rpmbuild rpmbuild制作rpm 包 同时生成devel包 阻止rpmbuid打包时strip程序/库 修改rpm、重新制作rpm包 RPM 打包 工具 SPEC文件 spec文件关键字说明大全 rpmbuild的目录和Spec宏变量和参数说明 preamble部分 Bo

[转帖]Linux操作系统使用RPMBUILD命令打包RPM的详细步骤

https://www.cnblogs.com/zhangxinglong/p/11904922.html 首先,我们需要了解一些预备知识,在旧版本的CentOS中,rpmbuild工具默认的工作路径是/usr/src/redhat,因为权限原因,一般用户身份不能制作rpm软件包,只能切换到root

[转帖]clickHouse单机模式安装部署(RPM安装)

关于版本和系统的选择 操作系统:Centos-7 ClickHouse: rpm 在安装,20.x 安装前的准备 CentOS7 打开文件数限 在 /etc/security/limits.conf 这个文件的末尾加入一下内容: [hadoop@hadoop001 ~]$ sudo vim /etc

[转帖]011 Linux 打包与解压 tar

https://my.oschina.net/u/3113381/blog/5429977 01 压缩、打包命令有哪些? Linux 上有着各种压缩、打包的工具:tar、gzip、zip、7z,而 tar 应该算是 Linux 官宣的压缩工具了。 tar 的核心压缩工具其实是 gzip,在其上做了一

[转帖]pyinstaller实现将python程序打包成exe文件

https://www.cnblogs.com/blogzyq/p/13939739.html 如果我们想要在一个没有python以及很多库环境的电脑上使用我们的小程序该怎么办呢? 我们想到,在Windows平台可以将程序打包成exe可执行文件,而pyinstaller就可以帮我们将程序打包成exe

[转帖]Springboot配置https访问

https://www.cnblogs.com/feifuzeng/p/14709372.html 介绍 该篇博文主要介绍如何配置Springboot使其打包部署的服务必须通过HTTPS协议才可访问,仅供内部研究使用。 生成https证书 要使用https,首先需要ssl证书,获取SSL证书有两种方

[转帖]podman,ctr镜像导入导出

podman 查看镜像 podman images podman 镜像导出 podman save foxwho.com/fox/image:1.0.0 -o image.img foxwho.com/fox/image:1.0.0 : 打包时定义的镜像地址和版本号 image.img : 要保存的

[转帖]07-rsync企业真实项目备份案例实战(需求收集--服务器配置---客户端配置---报警机制---数据校验---邮件告警)

https://developer.aliyun.com/article/885820?spm=a2c6h.24874632.expert-profile.279.7c46cfe9h5DxWK 简介: 2.需求描述 客户端需求: 1.客户端每天凌晨1点在服务器本地打包备份(系统配置文件、日志文件、其

[转帖]Python基础之函数(四)

https://www.jianshu.com/p/168e341fb81c 一、函数定义 函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段;比如常用的print(),就是内建函数;通俗来讲,函数就是把代码打包成不通形状的乐高积木,以便可以根据需求调用拼装;当然这种函数叫做自定义函数