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国旗は?他に欠けているものはありますか(正確なルビーバージョンへのリンク)
-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/