構建本地yum源之rpmbuild問題彙總

来源:http://www.cnblogs.com/p4w9110/archive/2016/01/05/5103147.html
-Advertisement-
Play Games

- check-rpaths的問題 今天在編譯varnish的時候,遇到幾個問題,其中一個就是出現如下錯誤:...+ /usr/lib/rpm/check-rpaths /usr/lib/rpm/check-buildroot************************************....


- check-rpaths的問題

  今天在編譯varnish的時候,遇到幾個問題,其中一個就是出現如下錯誤:

...
+ /usr/lib/rpm/check-rpaths /usr/lib/rpm/check-buildroot ******************************************************************************* * * WARNING: 'check-rpaths' detected a broken RPATH and will cause 'rpmbuild' * to fail. To ignore these errors, you can set the '$QA_RPATHS' * environment variable which is a bitmask allowing the values * below. The current value of QA_RPATHS is 0x0000. * * 0x0001 ... standard RPATHs (e.g. /usr/lib); such RPATHs are a minor * issue but are introducing redundant searchpaths without * providing a benefit. They can also cause errors in multilib * environments. * 0x0002 ... invalid RPATHs; these are RPATHs which are neither absolute * nor relative filenames and can therefore be a SECURITY risk * 0x0004 ... insecure RPATHs; these are relative RPATHs which are a * SECURITY risk * 0x0008 ... the special '$ORIGIN' RPATHs are appearing after other * RPATHs; this is just a minor issue but usually unwanted * 0x0010 ... the RPATH is empty; there is no reason for such RPATHs * and they cause unneeded work while loading libraries * 0x0020 ... an RPATH references '..' of an absolute path; this will break * the functionality when the path before '..' is a symlink * * * Examples: * - to ignore standard and empty RPATHs, execute 'rpmbuild' like * $ QA_RPATHS=$[ 0x0001|0x0010 ] rpmbuild my-package.src.rpm * - to check existing files, set $RPM_BUILD_ROOT and execute check-rpaths like * $ RPM_BUILD_ROOT=<top-dir> /usr/lib/rpm/check-rpaths * ******************************************************************************* ERROR 0002: file 'xxx.so' contains an invalid rpath 'xxx' in [xxx]
...

  參考 https://fedoraproject.org/wiki/Packaging:Guidelines, 其中說道:

Sometimes, code will hardcode specific library paths when linking binaries (using the -rpath or -R flag). This is commonly referred to as an rpath. Normally, the dynamic linker and loader (ld.so) resolve the executable's dependencies on shared libraries and load what is required. However, when -rpath or -R is used, the location information is then hardcoded into the binary and is examined by ld.so in the beginning of the execution. Since the Linux dynamic linker is usually smarter than a hardcoded path, we usually do not permit the use of rpath in Fedora.
There is a tool called check-rpaths which is included in the rpmdevtools package. It is a good idea to add it to the %__arch_install_post macro in your ~/.rpmmacros config file:

  由此可知,這一步只是一種檢測是不是代碼中使用了rpath,那我們可以簡單的註釋掉rpath檢測就可以了,具體做法就是:

  vi ~/.rpmmacros

%_topdir      %(echo $HOME)/rpmbuild
%_smp_mflags  -j3
#%__arch_install_post   /usr/lib/rpm/check-rpaths   /usr/lib/rpm/check-buildroot

  後面就能順利編譯了

 

- pkgconfig跟ldconfig, ldd的問題

  先看下麵的說明:

1. The pkgconfig package contains tools for passing the include path and/or library paths to build tools during the make file execution.
pkg-config is a function that returns meta information for the specified library.
The default setting for PKG_CONFIG_PATH is /usr/lib/pkgconfig because of the prefix we use to install pkgconfig. You may add to PKG_CONFIG_PATH by exporting additional paths on your system where pkgconfig files are installed. Note that PKG_CONFIG_PATH is only needed when compiling packages, not during run-time.
上面的解釋夠清楚了,pkg-config是用來在執行makefile時指定頭文件和庫文件的路徑。它到由環境變數PKG_CONFIG_PATH指定的路徑下(預設為/usr/lib/config)去找對應庫的*.pc文件,*.pc文件記錄了包之間的倚賴關係、頭文件和庫文件包含路徑、版本等信息。
2. /etc/ld.so.conf.d/* 或/etc/ld.so.conf和ldconfig.
/etc/ld.so.conf.d/*目錄下的文件和/etc/ld.so.conf記錄了動態鏈接庫的路徑,系統預設搜索/lib和 /usr/lib,在其他路徑下的庫文件就需在這些文件中指定。或者,還有個方法,就是設置LD_LIBRARY_PATH環境變數,添加其他路徑,多個 中間用:分隔開。
ldconfig是一個用來將/etc/ld.so.conf.d/*h 和/etc/ld.so.conf中列出的庫緩存到/etc/ld.so.cache文件中以供使用,因此在裝完一些庫或更新/etc/ld.so.conf文件時,需運行/sbin/ldconfig命令一下。

  當運行 ./configure 產生Makefile的過程中出現, pkg-config有問題,或是不能找到對應的lib文件的時候。

  不妨重新設置下pkgconfig的兩個變數:

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/share/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG=/usr/bin/pkg-config

  並且重新載入下動態鏈接庫

ldconfig

  另外一個非常實用的調試腳本就是ldd: 

[root@xx pcre-8.34]# ldd /bin/ls
    linux-vdso.so.1 =>  (0x00007fff2a5ff000)
    libselinux.so.1 => /lib64/libselinux.so.1 (0x00007fec45edf000)
    librt.so.1 => /lib64/librt.so.1 (0x00007fec45cd7000)
    libcap.so.2 => /lib64/libcap.so.2 (0x00007fec45ad2000)
    libacl.so.1 => /lib64/libacl.so.1 (0x00007fec458ca000)
    libc.so.6 => /lib64/libc.so.6 (0x00007fec45536000)
    libdl.so.2 => /lib64/libdl.so.2 (0x00007fec45331000)
    /lib64/ld-linux-x86-64.so.2 (0x00007fec46105000)
    libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fec45114000)
    libattr.so.1 => /lib64/libattr.so.1 (0x00007fec44f0f000)
[root@xx pcre-8.34]# 

  其本質也就是設置諸如LD_DEBUG等環境變數,在程式運行時,列印出調用的動態鏈接庫。

  

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在web頁面上我們可以通過frameset,iframe嵌套框架很容易實現各種導航+內容的佈局界面,而在winform、WPF中實現其實也很容易,我這裡就分享一個:在winform下實現左右佈局多視窗界面。我這裡說的多視窗是指一個父視窗包含多個子視窗,在winform中實現這種效果很簡單,即將某個窗...
  • 最近對UWP開發比較感興趣,大概瞭解之後覺得有必要回顧一下xaml相關內容。。於是抽時間把以前學WPF的相關材料搜羅了一下順便和新的xaml特性做了一個小總結。。希望能堅持寫下去吧。。O(∩_∩)O~ 個人覺得還是從比較零散的xaml佈局開始寫比較合適,這部分直接決定了應用程式的實用性,尤其是在出....
  • 繼上次的前臺內容今天我們來講一講後臺的一些事兒吧!後臺呢主要是對前臺的歌手、歌曲信息及圖片、歌曲路徑的一些~嗯~算是配置吧! 還是先看效果圖 後臺效果圖 登錄界面 主界面 添加歌手 該窗體填寫歌手信息並選擇圖片後會將歌手的信息保存在資料庫並且將選中的圖片複製到資料庫中存放歌手圖像的制定路徑中! 查詢...
  • FrameSet框架集
  • 之前我在一篇blog中寫過如何使用多語言工具包,見http://www.cnblogs.com/yanxiaodi/p/3800767.html在WinEcos社區也發佈過一篇詳細的文章介紹多語言工具包的使用,但因社區改版那篇文章已經找不到了。當時寫的時候還沒有出Win10的SDK,都是基於UAP框...
  • 當HttpContext對象創建之後,HttpRuntime將隨後創建一個用於處理請求的對象,這個對象的類型為HttpApplication. 在ASP.NET內部,HttpRuntime管理一個定義在System.Web命名空間下的HttpApplicationFactory類的實例...
  • 在mac上截屏的幾種方式
  • 1、圖像的延遲一幀的問題,主要原因如代碼中所說,只有隊列多餘兩幀的時候才會出隊一幀。該問題對於連續的圖像幀基本無影響,只是對於非連續的情況下,進來的第一幀會延後,先出來的是上一次圖像序列中最後一幀。而當次圖像序列的最後一幀將會被刷到隊列中。 如果將其中的2改寫為1,則會出現圖像上下分層現象,上層是....
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...