Mono shared library under linux location

前端 未结 1 663
一生所求
一生所求 2021-01-21 01:19

I have a shared library written in C++ that I\'d like to use with Mono under Linux, I follow this guide http://www.mono-project.com/Interop_with_Native_Libraries

I got i

相关标签:
1条回答
  • 2021-01-21 01:32

    I think you have to use the environment variable LD_LIBRARY_PATH when launching your program:

    LD_LIBRARY_PATH=. mono yourapp.exe

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