Ruby Embedding

M

Mike Piazza

Hello everybody.

I downloaded the ruby 1.9.1 for windows and i'm trying to embed using
C++ for 3 days and, i don't know but for some reason i'm getting crashes
with these functions:

...
rb_load_file
ruby_incpush
ruby_options
...

I searched for help but the documentation on ruby's website is for 1.8.?
and i can't find anywhere a good documentation for 1.9.1. Thanks in
advance.
 
P

Phlip

Mike said:
I downloaded the ruby 1.9.1 for windows and i'm trying to embed using
C++ for 3 days and, i don't know but for some reason i'm getting crashes
with these functions:

..
rb_load_file

Post a sample of your code, and the "crash" particulars. And what C++ are you using?
 
M

Mike Piazza

Phlip said:
Post a sample of your code, and the "crash" particulars. And what C++
are you using?


I'm using MSVC 2008 Express

The code:

extern "C"
{
#include <ruby.h>
}

#include <iostream>
#include <conio.h>

RUBY_GLOBAL_SETUP

int main(int argc, char **argv)
{
RUBY_INIT_STACK

ruby_init();
ruby_init_loadpath();
ruby_script("embedded");

void *file = rb_load_file("test.rb");
ruby_run_node(file);

return 1;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top