Add library search path to clang

后端 未结 2 1270
耶瑟儿~
耶瑟儿~ 2021-01-01 21:12

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 -Xlin

相关标签:
2条回答
  • 2021-01-01 21:17

    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.

    0 讨论(0)
  • 2021-01-01 21:25

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

    0 讨论(0)
提交回复
热议问题