gpt4 book ai didi

linux - 使用 NPTL,同时将 glibc 与 linuxthreads 保持一致

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:27:05 25 4
gpt4 key购买 nike

我想知道是否可以使用 nptl 而不是嵌入在我的 glibc 中的 linuxthreads 来测试特定的二进制文件。我不想重新编译 glibc,因为它是随我的特定硬件/软件一起提供的,我不想破坏一切。我只是想能够测试这个实现,看看有什么好处

提前致谢

最佳答案

I don't want to recompile the glibc

如果你的 glibc 是用 linuxthreads 而不是 nptl 编译的,那么显然你不能用它来测试带有 nptl 的二进制文件。

您的选择是:

  1. 使用其他(较新的)系统,该系统具有支持 nptl 的 glibc,或者
  2. 构建一个单独的支持 nptl 的 glibc 版本,并使用,例如

    cd glibc-2.15 ./configure --prefix=/usr/glibc-nptl && make && sudo make install

    # 现在使用新建的 glibc 运行二进制文件:
    /usr/glibc-nptl/lib/ld-2.15.so/path/to/binary

另见 this answer .

关于linux - 使用 NPTL,同时将 glibc 与 linuxthreads 保持一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10259646/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com