halfie (Ruby Guy)
- Login: halfie
- Email: assie181@gmail.com
- Registered on: 07/24/2013
- Last sign in: 05/16/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/25/2013
-
10:27 PM Ruby Bug #8680: ruby crashes when built with AddressSanitizer
- Attaching latest patch against tip. Feedback is welcome.
07/31/2013
-
12:32 AM Ruby Bug #8680: ruby crashes when built with AddressSanitizer
- If we are 100% sure that the GC is fine, then the following patch can be applied to make CRuby ASAN friendly.
diff --git a/gc.c b/gc.c
index caaf00c..de7815b 100644
--- a/gc.c
+++ b/gc.c
@@ -31,6 +31,12 @@
#include <sys/types.h>...
07/24/2013
-
08:41 PM Ruby Bug #8680 (Closed): ruby crashes when built with AddressSanitizer
- ruby crashes when built with AddressSanitizer (http://clang.llvm.org/docs/AddressSanitizer.html).
To reproduce the problem, try to build latest ruby from trunk.
$ gcc --version
gcc (GCC) 4.8.1 20130603 (Red Hat 4.8.1-1)
...
$ ...