Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ruby_options no longer optional in 3.2? #27

Open
silverhammermba opened this issue Nov 21, 2023 · 1 comment
Open

ruby_options no longer optional in 3.2? #27

silverhammermba opened this issue Nov 21, 2023 · 1 comment

Comments

@silverhammermba
Copy link
Owner

According to this SO question, just calling ruby_init no longer works in Ruby 3.2 and you have to call ruby_options prior to setting the load path.

Figure out why that is and update the instructions for running Ruby in C.

@artyomb
Copy link

artyomb commented May 17, 2024

Hello,
Works for me 3.3.1

#include <ruby.h>
int main(int argc, char **argv) {
    ruby_init();
    rb_eval_string("puts 'Hello from eval'");
    return ruby_cleanup(0);
}
gcc main.c -o ruby_in_c -I/home/user/.rbenv/versions/3.3.1/include/ruby-3.3.0 \
                        -I/home/user/.rbenv/versions/3.3.1/include/ruby-3.3.0/x86_64-linux \
                        -L/home/user/.rbenv/versions/3.3.1/lib\
                        -lruby

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants