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.
如何编译嵌入 Ruby 的 C 应用程序?
什么是-l国旗?我还缺少其他东西吗(链接到确切的 ruby 版本)
-l
嵌入语言通常将解释器与嵌入它的二进制文件-l链接,将库与程序链接,您可以尝试:
gcc -Wall -I/usr/include/ruby-1.9.1/ myprog.c -o myprog -lruby
请注意,您可能也需要包含此内容,或在您的平台上包含类似内容:
-I/usr/include/ruby-1.9.1/x86_64-linux/