fjilderd (Freddy Jilderda)
- Login: fjilderd
- Registered on: 11/30/2016
- Last sign in: 12/05/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
12/06/2016
-
07:48 AM Ruby Bug #12994: Embedded ruby vs2015 build crashes
- Ok, but the rb_w32_sysinit function is not declared in a header file.
12/05/2016
-
12:39 PM Ruby Bug #12994: Embedded ruby vs2015 build crashes
- As a workaround I copy/pasted this code to the start of the _pioinfo function in win32.c (line 2462):
```C
#if RUBY_MSVCRT_VERSION >= 140
if (!__pioinfo) {
set_pioinfo_extra ();
}
#endif
-
10:56 AM Ruby Bug #12994: Embedded ruby vs2015 build crashes
- I'm sorry I was not clear, what I mean is I'm updating a C++ application from VS2010 to VS2015. This application embeds a ruby engine (version 1.8.6), so that users of the application can uses ruby scripting to add custom functionality t...
11/30/2016
-
03:38 PM Ruby Bug #12994 (Closed): Embedded ruby vs2015 build crashes
- When an embedded ruby engine in a vs2015 application is initialised using ruby_init the function set_pioinfo_extra in win32.c is not called.
This results in a crash when ruby_init is called and it is trying to derefence the __pioinfo po...