[#34722] cgi.rb の form の挙動 — FUJIOKA Takeyuki <fujioka@...>

藤岡です。

18 messages 2002/04/02

[#34724] 「たのしい Ruby 」 — Shin-ichiro HARA <sinara@...>

原(信)です。

18 messages 2002/04/02
[#34728] Re: 「たのしい Ruby 」 — matz@... (Yukihiro Matsumoto) 2002/04/02

まつもと ゆきひろです

[#34746] Re: 「たのしい Ruby 」 — TAKAHASHI Masayoshi <maki@...> 2002/04/02

高橋征義です。

[#34752] Re: 「たのしい Ruby 」 — Shin-ichiro HARA <sinara@...> 2002/04/03

原(信)です。

[#34842] [ann] Web 家計簿(β版)リリース — 堀川 久 <vzw00011@...>

こんにちは。

18 messages 2002/04/07
[#34869] Re: [ann] Web 家計簿(β版)リリース — Nobuhide Kanagawa <nobuhide@...> 2002/04/11

こんばんわ!

[#34885] creating a scope / anonymous module — Takaaki Tateishi <ttate@...>

立石です.

38 messages 2002/04/13
[#34891] Re: creating a scope / anonymous module — nobu.nakada@... 2002/04/14

なかだです。

[#34892] Re: creating a scope / anonymous module — Takaaki Tateishi <ttate@...> 2002/04/14

At Sun, 14 Apr 2002 18:00:12 +0900,

[#34894] Re: creating a scope / anonymous module — nobu.nakada@... 2002/04/14

なかだです。

[#34896] Re: creating a scope / anonymous module — Takaaki Tateishi <ttate@...> 2002/04/14

At Sun, 14 Apr 2002 21:08:47 +0900,

[#34899] Re: creating a scope / anonymous module — matz@... (Yukihiro Matsumoto) 2002/04/15

まつもと ゆきひろです

[#34901] Re: creating a scope / anonymous module — Takaaki Tateishi <ttate@...> 2002/04/15

At Mon, 15 Apr 2002 09:51:05 +0900,

[#34902] Re: creating a scope / anonymous module — matz@... (Yukihiro Matsumoto) 2002/04/15

まつもと ゆきひろです

[#34903] Re: creating a scope / anonymous module — Takaaki Tateishi <ttate@...> 2002/04/15

At Mon, 15 Apr 2002 13:53:53 +0900,

[#34904] Re: creating a scope / anonymous module — matz@... (Yukihiro Matsumoto) 2002/04/15

まつもと ゆきひろです

[#34910] Re: creating a scope / anonymous module — Takaaki Tateishi <ttate@...> 2002/04/15

At Mon, 15 Apr 2002 15:07:57 +0900,

[#34958] windows 版 ruby でシステムコマンドが動かない — "jazzski _comp" <jazzski_comp@...>

はじめてrubyを使うのですが、windows版(cygwin版1.6.1)で下記のように

12 messages 2002/04/23

[ruby-list:34897] icc でコンパイルできない

From: rubikitch <rubikitch@...>
Date: 2002-04-14 22:44:02 UTC
List: ruby-list #34897
るびきちです。

IntelのCコンパイラiccをなんとか導入しましたが、
Rubyをコンパイル中一部でエラーがでました。

以下安定版snapshotでの出力です。
「-ipo -restrict -ipo_obj」は適当につけてみました。
外してもだめでした。
1.6.7でもやはりeval.cとfile.cでこけます。

OSはDebian GNU/Linuxですが、簡単なCコードをコンパイル&実行できることを確認しました。
Linux witch 2.2.20 #9 Tue Dec 25 15:17:12 JST 2001 i586 unknown



sh-2.05a$ make -k 
icc -ipo -restrict -ipo_obj -O2 -m486 -DCPU=586 -I. -I. -c eval.c
icc: Command line warning: ignoring unknown option '-m486'
eval.c:
"eval.c", line 37: error #147: declaration is incompatible with "void *alloca(size_t={_Sizet={unsigned int}})" (declared at line 33 of "/usr/include/alloca.h")
  char *alloca();
        ^

"eval.c", line 2992: warning #180: argument is incompatible with formal parameter
  	    defn = copy_node_scope(node->nd_defn, ruby_cref);
  	                                          ^

"eval.c", line 3036: warning #180: argument is incompatible with formal parameter
  	    defn = copy_node_scope(node->nd_defn, ruby_cref);
  	                                          ^

"eval.c", line 5095: warning #180: argument is incompatible with formal parameter
      return exec_under(eval_under_i, under, under, args);
                                                    ^

"eval.c", line 5110: warning #180: argument is incompatible with formal parameter
      return exec_under(yield_under_i, under, 0, self);
                                                 ^

"eval.c", line 8457: warning #180: argument is incompatible with formal parameter
      return rb_thread_start_0(rb_thread_yield, args, rb_thread_check(thread));
                                                ^

"eval.c", line 8467: warning #180: argument is incompatible with formal parameter
      return rb_thread_start_0(rb_thread_yield, args, rb_thread_alloc(klass));
                                                ^

compilation aborted for eval.c (code 2)
make: *** [eval.o] Error 2
icc -ipo -restrict -ipo_obj -O2 -m486 -DCPU=586 -I. -I. -c file.c
icc: Command line warning: ignoring unknown option '-m486'
file.c:
"file.c", line 165: error: argument of type "struct <unnamed>" is incompatible with parameter of type "long"
      return INT2NUM(get_stat(self)->st_dev);
             ^

"file.c", line 208: error: argument of type "struct <unnamed>" is incompatible with parameter of type "long"
      return INT2NUM(get_stat(self)->st_rdev);
             ^

"file.c", line 938: warning #180: argument is incompatible with formal parameter
      n = apply2files(chmod_internal, rest, mode);
                                            ^

"file.c", line 1002: warning #180: argument is incompatible with formal parameter
      n = apply2files(chown_internal, rest, &arg);
                                            ^

"file.c", line 1053: warning #180: argument is incompatible with formal parameter
      n = apply2files(utime_internal, rest, tvp);
                                            ^

"file.c", line 1733: error: expression must have arithmetic or pointer type
  	    if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino)
  	        ^

compilation aborted for file.c (code 2)
make: *** [file.o] Error 2
make: Target `all' not remade because of errors.

るびきち☆
http://voo.to/ruby/ ←Ruby大衆化計画(笑)

In This Thread

Prev Next