[#62904] [ruby-trunk - Feature #9894] [Open] [RFC] README.EXT: document rb_gc_register_mark_object — normalperson@...
Issue #9894 has been reported by Eric Wong.
3 messages
2014/06/02
[#63321] [ANN] ElixirConf 2014 - Don't Miss Jos辿 Valim and Dave Thomas — Jim Freeze <jimfreeze@...>
Just a few more weeks until ElixirConf 2014!
6 messages
2014/06/24
[ruby-core:63002] [ruby-trunk - Bug #9921] gmtime_r, win32.h, and <string>
From:
phasis@...
Date:
2014-06-09 01:22:56 UTC
List:
ruby-core #63002
Issue #9921 has been updated by Heesob Park.
I guess error messages about gmtime_r must be solved with `#include <ctime>`
~~~
#include <ctime>
#include <string>
#include "ruby.h"
int main() {
return(0);
}
~~~
----------------------------------------
Bug #9921: gmtime_r, win32.h, and <string>
https://bugs.ruby-lang.org/issues/9921#change-47090
* Author: Marty Plummer
* Status: Open
* Priority: Normal
* Assignee:
* Category:
* Target version:
* ruby -v: 2.1.2p95
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
----------------------------------------
Found an interesting/annoying issue, using ruby 2.1.2p95 on windows via the msys2 project;
seems there is an issue regarding compiling programs including <string> and "ruby.h" using mingw's g++.
The following test program fails to compile:
#include <string>
#include "ruby.h"
int main() {
return(0);
}
---Files--------------------------------
g++.log (3.56 KB)
clang++.log (3.59 KB)
--
https://bugs.ruby-lang.org/