I just recently went through the fun of getting ruby 1.8.4 to compile on
AIX 5.3, and your error was one of the ones that I struck.
I've written up my experience at
In summary, to get ruby to compile, I needed to run:
./configure --prefix=/usr/local/ruby184 --disable-ipv6 \
--with-openssl-include=/opt/freeware/include \
--with-openssl-lib=/opt/freeware/lib \
--with-zlib-include=/opt/freeware/include \
--with-zlib-lib=/opt/freeware/lib \
--disable-largefile
find . -name Makefile -exec perl -pi -e 's/ -brtl *$//' {} \;
gmake ruby.imp
make
Hopefully, something similar will get it to run on AIX 4.3.3.
From: list-bounce@example.com
[mailto:list-bounce@example.com] On Behalf Of Pravin Bhakre
Sent: Thursday, 16 February 2006 5:34 AM
To: ruby-talk ML
Subject: make failing while compiling ruby-1.8.4 on AIX 4.3.3HI,
I am getting getting errors and compilation faile when I do "make"
on AIX 4.3.3 while compiling Ruby 1.8.4Did anybody got this error and what needs to be done for
this problem.
miniruby -g
...
···
-----Original Message-----
-O2 -DR UBY_EXPORT -brtl
gcc: `-b' must come at the start of the command line
make: 1254-004 The error code from the last command is 1.Stop.
===> /home/pravin/ruby-1.8.4