What does "--enable-shared" mean at Ruby compilation time?

RVM uses this flag for ./configure . This means β€œcreate a shared library for Ruby,” but where can I get more information about what actually happens when you use this compilation flag?

+4
source share
1 answer

It will create libruby.so so that other programs can use it, for example. Vim with Ruby support.

+6
source

Source: https://habr.com/ru/post/1497168/


All Articles