To what environment variable will you assign or append a value if you need to tell the dynamic linker to look in a build directory for some of a program’s shared libraries?
A.
LD RUN PATH
B.
LD_SHARE_PATH
C.
LD_LIBRARY_PATH
D.
LD_UB_PATH
E.
LD_LOAD_PATH
Explanation:
the LD_LIBRARY_PATH environmental variable set the path for added libraries. You can display environmental varialble using env command.
I think LD_UBRARY_PATH should be LD_LIBRARY_PATH
You’re right. Thanks.