[#1816] Ruby 1.5.3 under Tru64 (Alpha)? — Clemens Hintze <clemens.hintze@...>

Hi all,

17 messages 2000/03/14

[#1989] English Ruby/Gtk Tutorial? — schneik@...

18 messages 2000/03/17

[#2241] setter() for local variables — ts <decoux@...>

18 messages 2000/03/29

[ruby-talk:01904] Re: Ruby 1.5.3 under Tru64 (Alpha)?

From: Clemens Hintze <clemens.hintze@...>
Date: 2000-03-16 17:14:06 UTC
List: ruby-talk #1904
Yukihiro Matsumoto writes:
> 
> In message "[ruby-talk:01879] Re: Ruby 1.5.3 under Tru64 (Alpha)?"
>     on 00/03/16, Clemens Hintze <clemens.hintze@alcatel.de> writes:

...

> How about changing ... ?

Yes! This did solve the configuration problem! :-)

But unfortunately there remains another problem.

   $ make
   cc -g -ansi -I. -I. -I/home/bztools/include -c array.c
   cc -g -ansi -I. -I. -I/home/bztools/include -c bignum.c
   cc: Error: /usr/include/sys/lc_core.h, line 132: Missing identifier. (parnoident)
       char     *(*nl_langinfo) __((__nl_item, struct _LC_charmap_t *));
   -----------------------------^              

This happens, as the options '-oldc -std' were not used during
compilation. If I recompile manually with:

   $ cc -g -oldc -std -I. -I. -I/home/bztools/include -c bignum.c                      
it will be compiled properly.

So I assume the configuration has not set the options properly.

\cle

In This Thread