[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Ruby Embedding

Mike Piazza

4/1/2009 6:15:00 PM

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.
--
Posted via http://www.ruby-....

2 Answers

Phlip

4/1/2009 6:51:00 PM

0

Mike Piazza wrote:

> 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?

Mike Piazza

4/1/2009 8:01:00 PM

0

Phlip wrote:
> Mike Piazza wrote:
>
>> 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?


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;
}
--
Posted via http://www.ruby-....