We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On linux use ld.so --list-diagnostics and parse the results to find the system dirs to pass to the linker. The output looks like this on my gentoo:
ld.so --list-diagnostics
... path.prefix="/usr" path.rtld="/lib64/ld-linux-x86-64.so.2" path.sysconfdir="/etc" path.system_dirs[0x0]="/lib64/" path.system_dirs[0x1]="/usr/lib64/" version.release="stable" version.version="2.38" ...
and like this on debian
... path.prefix="/usr" path.rtld="/lib64/ld-linux-x86-64.so.2" path.sysconfdir="/etc" path.system_dirs[0x0]="/lib/x86_64-linux-gnu/" path.system_dirs[0x1]="/usr/lib/x86_64-linux-gnu/" path.system_dirs[0x2]="/lib/" path.system_dirs[0x3]="/usr/lib/" version.release="stable" version.version="2.36" ...
The text was updated successfully, but these errors were encountered:
edg-l
No branches or pull requests
On linux use
ld.so --list-diagnostics
and parse the results to find the system dirs to pass to the linker. The output looks like this on my gentoo:and like this on debian
The text was updated successfully, but these errors were encountered: