使用-fPIC 构建的 glibc 静态库是否有 rpm 可随时用于 centos?
Is there an rpm for glibc static libraries built with -fPIC readily available for centos?
是否有使用 -fPIC 构建的 centos glibc-static rpm?
我有一种情况需要构建一个没有任何依赖项的共享库。这包括不依赖于 glibc 等包含的库。我找到了 centos 的 glibc-static rpm here 但这些静态库不是使用 -fPIC 构建的,因此它们对创建共享库毫无用处。
I have a situation where I need to build a shared library without any dependencies.
这在使用 GLIBC 时是不可能的。 无论您做什么,您的共享库都将依赖于 libc.so.6
和 ld-linux.so
。
This includes having no dependency on the libraries included with glibc among others.
将 libc.a
链接到您的 .so
将 不会 解决您的问题(无论是什么问题,请参阅 http://xyproblem.info)。
是否有使用 -fPIC 构建的 centos glibc-static rpm?
我有一种情况需要构建一个没有任何依赖项的共享库。这包括不依赖于 glibc 等包含的库。我找到了 centos 的 glibc-static rpm here 但这些静态库不是使用 -fPIC 构建的,因此它们对创建共享库毫无用处。
I have a situation where I need to build a shared library without any dependencies.
这在使用 GLIBC 时是不可能的。 无论您做什么,您的共享库都将依赖于 libc.so.6
和 ld-linux.so
。
This includes having no dependency on the libraries included with glibc among others.
将 libc.a
链接到您的 .so
将 不会 解决您的问题(无论是什么问题,请参阅 http://xyproblem.info)。