Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编写一个链接我的对象的生成文件。它成功地制作了一个动态库 lib/libunittest.so - 它的类名是 UnitTest.cpp。当我尝试将我的 mainDriver.o 与它链接时,它会抱怨:
g++ -fPIC -o bin/mainDriver obj/mainDriver.o -Llib -lunittest Error: cannot find -lunittest
注意:我在 cygwin 上执行此操作。有人可以帮我吗?
当您在 Window 上运行它时,*.so 文件类型可能存在问题。将其更改为 *.dll,它应该可以工作。