chincheta0815 wrote: > @evoz4: I feel quite stupid and cunfused, but how did you manage to > compile perl with perlbrew and gcc under solaris? I got it some weeks > ago. I compiled without problem... Then I deleted it (don't ask me why). > Now I am not able to get it compiling without any errors anymore. The > io/inplace.t test fils all the time. > > I do it the it is described in the buildme.sh and I have /usr/gnu/bin in > the beginning of the path variable.... > > That might be off topic, but I have not clue what to do.
I didn't use perlbrew, just: $ tar zxf ~/Downloads/perl-5.12.4.tar.gz $ mv perl-5.12.4 perl-5.12.4-i386-solaris11-gcc $ cd perl-5.12.4-i386-solaris11-gcc $ PATH=/usr/ccs/bin:/usr/bin $ MAKE=/usr/gnu/bin/make $ export PATH MAKE $ ./Configure -d -Dcc=gcc -Dusethreads -Duse64bitint -A ccflags=-fno-stack-protector -A ldflags=-fno-stack-protector 2>&1 | tee cfg.out $ /usr/gnu/bin/make $ /usr/gnu/bin/make tests $ pfexec /usr/gnu/bin/make install Seemed to work ok for me. ------------------------------------------------------------------------ evoz4's Profile: http://forums.slimdevices.com/member.php?userid=54972 View this thread: http://forums.slimdevices.com/showthread.php?t=93300 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
