Arch-Linux

avrdude 下載後也找不到 GLIBC_2.29

  • May 31, 2019

avrdude我在使用快閃記憶體我的微控制器時有點掙扎。

它依賴於它無法找到的libm.so.6 **GLIBC_2.29 。**它查看/usr/lib/libm.so.6該文件實際所在的位置,但它也位於/lib/lib.so.6.

所以當我跑步的時候

sudo pacman -S glibc 

安裝/更新庫https://www.archlinux.org/packages/core/x86_64/glibc/

我很確定我只將它安裝到/lib/.

但既然avrdude正在尋找/usr/lib它仍然不會找到它。我很難理解這兩個目錄的含義,因為它有點搞砸了,而不是對我的情況有幫助。

我怎樣才能正確地做到這一點?

編輯

我想做一些愚蠢的事情,所以我做了,cp /lib/libm.so.6 /usr/lib/libm.o.6cp命令告訴我文件是一樣的。

現在我不明白為什麼avrdude找不到正確的 GLIBC 版本,因為它已正確更新(據我所知)。

請注意,安裝glibc是不完整C runtime. 的為了完成,C runtime您可能需要複製與您正在使用的編譯器匹配的其他標頭檔,因為使用--sysroot會將它們的查找限制為sysroot.

在同一個系統上很可能有多個版本的 glibc(我們每天都這樣做)。

但是,您需要知道 glibc 由許多必須匹配的部分(200 多個共享庫)組成。其中之一是 ld-linux.so.2,它必須與 libc.so.6 匹配,否則您將看到您所看到的錯誤。

ld-linux.so.2 的絕對路徑在連結時被硬編碼到執行檔中,連結完成後不能輕易更改。

要建構可與新 glibc 一起使用的執行檔,請執行以下操作:

g++ main.o -o myapp ... \
  -Wl,--rpath=/path/to/newglibc \
  -Wl,--dynamic-linker=/path/to/newglibc/ld-linux.so.2

-rpath連結器選項將使執行時載入程序在其中搜尋庫(/path/to/newglibc因此您不必LD_LIBRARY_PATH在執行它之前進行設置),並且該-dynamic-linker選項將“烘焙”路徑以更正ld-linux.so.2到應用程序中。

如果您無法重新連結myapp應用程序(例如,因為它是第三方二進製文件),並非所有內容都會失去,但它會變得更加棘手。一種解決方案是為其設置適當的chroot環境。另一種可能性是使用rtldi二進制編輯器。

解決方案#1

LD_PRELOAD='mylibc.so anotherlib.so' program

解決方案#2

在沒有專用 GCC 的情況下編譯您自己的 glibc 並使用它

此設置可能會起作用並且速度很快,因為它不會重新編譯整個 GCC 工具鏈,只需重新編譯 glibc。

但它不可靠,因為它使用主機 C 執行時對象,例如crt1.o, crti.o,crtn.o並由 glibc 提供。這在以下位置有所提及:https ://sourceware.org/glibc/wiki/Testing/Builds?action=recall&rev= 21#Compile_against_glibc_in_an_installed_location 這些對象執行 glibc 所依賴的早期設置,所以如果事情以美妙的方式崩潰,我不會感到驚訝和非常微妙的方式。

有關更可靠的設置,請參閱下面的設置 2。

glibc在本地建構和安裝:

export glibc_install="$(pwd)/glibc/build/install"

git clone git://sourceware.org/git/glibc.git
cd glibc
git checkout glibc-2.28
mkdir build
cd build
../configure --prefix "$glibc_install"
make -j `nproc`
make install -j `nproc`

設置 1:驗證建構

test_glibc.c

#define _GNU_SOURCE
#include <assert.h>
#include <gnu/libc-version.h>
#include <stdatomic.h>
#include <stdio.h>
#include <threads.h>

atomic_int acnt;
int cnt;

int f(void* thr_data) {
   for(int n = 0; n < 1000; ++n) {
       ++cnt;
       ++acnt;
   }
   return 0;
}

int main(int argc, char **argv) {
   /* Basic library version check. */
   printf("gnu_get_libc_version() = %s\n", gnu_get_libc_version());

   /* Exercise thrd_create from -pthread,
    * which is not present in glibc 2.27 in Ubuntu 18.04.
    * https://stackoverflow.com/questions/56810/how-do-i-start-threads-in-plain-c/52453291#52453291 */
   thrd_t thr[10];
   for(int n = 0; n < 10; ++n)
       thrd_create(&thr[n], f, NULL);
   for(int n = 0; n < 10; ++n)
       thrd_join(thr[n], NULL);
   printf("The atomic counter is %u\n", acnt);
   printf("The non-atomic counter is %u\n", cnt);
}

編譯並執行test_glibc.sh

#!/usr/bin/env bash
set -eux
gcc \
 -L "${glibc_install}/lib" \
 -I "${glibc_install}/include" \
 -Wl,--rpath="${glibc_install}/lib" \
 -Wl,--dynamic-linker="${glibc_install}/lib/ld-linux-x86-64.so.2" \
 -std=c11 \
 -o test_glibc.out \
 -v \
 test_glibc.c \
 -pthread \
;
ldd ./test_glibc.out
./test_glibc.out

該程序輸出預期的:

gnu_get_libc_version() = 2.28
The atomic counter is 10000
The non-atomic counter is 8674

命令改編自https://sourceware.org/glibc/wiki/Testing/Builds?action=recall&rev=21#Compile_against_glibc_in_an_installed_location但 –sysroot 使其失敗:

cannot find /home/ciro/glibc/build/install/lib/libc.so.6 inside /home/ciro/glibc/build/install

所以我刪除了它。

ldd 輸出確認我們剛剛建構的 ldd 和庫實際上正在按預期使用:

+ ldd test_glibc.out
       linux-vdso.so.1 (0x00007ffe4bfd3000)
       libpthread.so.0 => /home/ciro/glibc/build/install/lib/libpthread.so.0 (0x00007fc12ed92000)
       libc.so.6 => /home/ciro/glibc/build/install/lib/libc.so.6 (0x00007fc12e9dc000)
       /home/ciro/glibc/build/install/lib/ld-linux-x86-64.so.2 => /lib64/ld-linux-x86-64.so.2 (0x00007fc12f1b3000)

gcc 編譯調試輸出顯示使用了我的主機執行時對象,如前所述,這很糟糕,但我不知道如何解決它,例如它包含:

COLLECT_GCC_OPTIONS=/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crt1.o

設置1:修改glibc

現在讓我們修改 glibc:

diff --git a/nptl/thrd_create.c b/nptl/thrd_create.c
index 113ba0d93e..b00f088abb 100644
--- a/nptl/thrd_create.c
+++ b/nptl/thrd_create.c
@@ -16,11 +16,14 @@
   License along with the GNU C Library; if not, see
   <http://www.gnu.org/licenses/>.  */

+#include &lt;stdio.h&gt;
+
#include "thrd_priv.h"

int
thrd_create (thrd_t *thr, thrd_start_t func, void *arg)
{
+  puts("hacked");
  _Static_assert (sizeof (thr) == sizeof (pthread_t),
                  "sizeof (thr) != sizeof (pthread_t)");

然後重新編譯重新安裝glibc,重新編譯重新執行我們的程序:

cd glibc/build
make -j `nproc`
make -j `nproc` install
./test_glibc.sh

我們看到 hacked 按預期列印了幾次。

這進一步證實了我們實際上使用的是我們編譯的 glibc 而不是主機。

在 Ubuntu 18.04 上測試。

資料來源:

https://stackoverflow.com/questions/847179/multiple-glibc-libraries-on-a-single-host/851229#851229

https://sourceware.org/glibc/wiki/Testing/Builds?action=recallrev=21#Compile_against_glibc_in_an_installed_location

引用自:https://unix.stackexchange.com/questions/522076