[#27919] 1.8.4 Preview2 検証 — "URABE Shyouhei aka. mput" <root@...>

卜部です。

33 messages 2005/12/01

[#27997] 1.8.4 documents? — "URABE Shyouhei aka. mput" <root@...>

卜部です。

22 messages 2005/12/12
[#28017] Re: 1.8.4 documents? — Koji Arai <jca02266@...> 2005/12/13

新井です。

[#28082] ruby_1_8 Segmentation fault on Cygwin — yanagi@...

柳田です。

13 messages 2005/12/21
[#28083] Re: ruby_1_8 Segmentation fault on Cygwin — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/21

山本です。

[#28140] ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — Tanaka Akira <akr@...17n.org>

HP-UX で HP aC++/ANSI C を使って作った ruby で、openssl や drb のテストをすると、

34 messages 2005/12/27
[#28141] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — WATANABE Tetsuya <Tetsuya.WATANABE@...> 2005/12/28

渡辺哲也です。

[#28142] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — Tanaka Akira <akr@...17n.org> 2005/12/28

In article <200512280307.jBS37nnj005909@pbsg500.nifty.com>,

[#28147] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/28

山本です。

[#28149] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — Tanaka Akira <akr@...17n.org> 2005/12/28

In article <20051228210640.13C71A10.ocean@m2.ccsnet.ne.jp>,

[#28151] Re: ia64-hpux11.23/socket.sl: this executable file can't load extension libraries (LoadError) — WATANABE Tetsuya <Tetsuya.WATANABE@...> 2005/12/29

渡辺哲也です。

[#28152] Re: ia64-hpux11.23/socket.sl: this executable file can't load extensionlibraries (LoadError) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/29

山本です。

[#28153] Re: ia64-hpux11.23/socket.sl: this executable file can't load extensionlibraries (LoadError) — "H.Yamamoto" <ocean@...2.ccsnet.ne.jp> 2005/12/29

山本です。

[#28154] thread based generator.rb — Tanaka Akira <akr@...17n.org> 2005/12/29

In article <20051229114438.44D19F00.ocean@m2.ccsnet.ne.jp>,

[ruby-dev:28055] Re: ruby 1.8 dumps core

From: nobuyoshi nakada <nobuyoshi.nakada@...>
Date: 2005-12-19 09:31:23 UTC
List: ruby-dev #28055
なかだです。

At Mon, 19 Dec 2005 16:21:43 +0900,
H.Yamamoto wrote in [ruby-dev:28051]:
> 書き忘れましたが、現在の RUBY_GC_ALWAYS のコードはそのままでは
> VisualC++ で動きません。なぜか main.c の always_gc に代入する
> 部分でクラッシュしてしまいます。(私は gc.c の Init_GC に移動して
> 使っていました)

dllimportがつかないからでしょう。


Index: Makefile.in
===================================================================
RCS file: /cvs/ruby/src/ruby/Makefile.in,v
retrieving revision 1.76
diff -U2 -p -r1.76 Makefile.in
--- Makefile.in	10 Nov 2005 23:21:52 -0000	1.76
+++ Makefile.in	19 Dec 2005 09:30:26 -0000
@@ -34,5 +34,6 @@ empty =
 OUTFLAG = @OUTFLAG@$(empty)
 CFLAGS = @CFLAGS@ @XCFLAGS@ @ARCH_FLAG@
-CPPFLAGS = -I. -I$(srcdir) @CPPFLAGS@
+XCFLAGS = -I. -I$(srcdir)
+CPPFLAGS = @CPPFLAGS@
 LDFLAGS = @STATIC@ $(CFLAGS) @LDFLAGS@
 EXTLDFLAGS = 
@@ -158,5 +159,5 @@ lex.c: keywords
 
 .c.@OBJEXT@:
-	$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
+	$(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -c $<
 
 clean-local::
Index: main.c
===================================================================
RCS file: /cvs/ruby/src/ruby/main.c,v
retrieving revision 1.15
diff -U2 -p -r1.15 main.c
--- main.c	12 Dec 2005 00:35:08 -0000	1.15
+++ main.c	19 Dec 2005 09:14:55 -0000
@@ -11,4 +11,5 @@
 **********************************************************************/
 
+#undef RUBY_EXPORT
 #include "ruby.h"
 
@@ -26,5 +27,5 @@ main(int argc, char **argv, char **envp)
 {
 #ifdef RUBY_GC_DEBUG
-    extern int always_gc;
+    RUBY_EXTERN int always_gc;
     always_gc = getenv("RUBY_ALWAYS_GC") != NULL;
 #endif


--- 僕の前にBugはない。
--- 僕の後ろにBugはできる。
    中田 伸悦


In This Thread