Add library search path to clang

孤人 提交于 2019-12-04 17:49:54

问题


How can I add /usr/local/lib to my clang library search path?

This is what I see when I list my library search paths using clang -Xlinker -v:


回答1:


Is it OK to add it as environment variable?

This should work:

export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib

Notice, it's LIBRARY_PATH, not LD_LIBRARY_PATH.

On the other hand, if that doesn't work for you, you should compile with the flag:

-L/usr/local/lib

And that should be sufficient, too.

EDIT: Btw, I don't know why you're using back-slashes instead of slashes... that needs explanation. Use slashes always. Even on Windows.




回答2:


With the -L flag you can add additional paths to your library path.



来源:https://stackoverflow.com/questions/42997218/add-library-search-path-to-clang

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!