Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
2k views

How do I make Ruby Gems installations on Windows use MinGW for making and compiling?

Trying to update some gems on a Windows machine and I continually get this error output for gems that do not have pre-compiled binaries: Provided configuration options: --with-opt-dir ...
2
votes
2answers
264 views

How would I instruct extconf.rb to use additional g++ optimization flags, and which are advisable?

I'm using Rice to write a C++ extension for a Ruby gem. The extension is in the form of a shared object (.so) file. This requires 'mkmf-rice' instead of 'mkmf', but the two (AFAIK) are pretty ...
1
vote
1answer
162 views

multiple ruby extension modules under one directory

Can sources for discrete ruby extension modules live in the same directory, controlled by the same extconf.rb script? Background: I've a project with two extension modules, foo.so and bar.so which ...
0
votes
0answers
31 views

How to exclude files when using Ruby's mkmf

I am building a Ruby C extension to wrap an existing C library. That library includes a source file that is not to be compiled separately as it is included by another source file. My extconf.rb file ...
0
votes
0answers
29 views

Require boost::dynamic_bitset<> in extconf.rb

I am in the process of releasing my Ruby C/C++ extension and try to make sure that all libraries required are listed in extconf.rb. I have not been able to figure out how to require the boost library ...
0
votes
0answers
48 views

Compiling C extensions in dep_selector Ruby gem with Rake on FreeBSD

I am trying to install Ruby gem: dep_gecode. It compiles some C extensions, but the compilation fails because the cpp compiler isn't run with properly set include folders. When I run rake install it ...
0
votes
1answer
103 views

How does one write extconf.rb files when one extension includes header files from another?

This is a follow-up question for: Multiple Ruby modules under one directory What happens if these extensions include each other? For example, you have the following structure: ext/foo ext/bar In ...