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.
编译时使用
gcc liburing-test.c -o liburing-test -lliburing
显示流动错误
/usr/bin/ld: cannot find -lliburing collect2: error: ld returned 1 exit status
您可以通过替换来修复此-lliburing错误-luring
-lliburing
-luring
gcc liburing-test.c -o liburing-test -luring
lib{library name}.a / .so 是 Linux 中静态库的命名约定吗?