Difference between revisions of "Pkgsrc on IRIX"

From WTFwiki
Jump to navigation Jump to search
(→‎Bootstrapping pkgsrc using gcc: Some workarounds for broken stuff)
(→‎Bootstrapping pkgsrc using gcc: Added hint for ruby)
Line 23: Line 23:
 
'''TO BE CONTINUED'''
 
'''TO BE CONTINUED'''
  
== Build problems
+
== Build problems ==
 
=== Building gcc from pkgsrc ===
 
=== Building gcc from pkgsrc ===
  
Line 42: Line 42:
 
   cd ../../
 
   cd ../../
 
   bmake install clean
 
   bmake install clean
 +
 +
=== lang/ruby ===
 +
 +
When you run ruby it complains about not being able to map the soname for libruby. The solution is:
 +
 +
  export LD_LIBRARY64_PATH=/usr/pkg/lib
 +
 +
A more general solution might be around, haven't done the research yet.
  
 
== Useful links ==
 
== Useful links ==
  
 
* [http://www.netbsd.org/~jschauma/ Page containing much useful information about pkgsrc on IRIX]
 
* [http://www.netbsd.org/~jschauma/ Page containing much useful information about pkgsrc on IRIX]

Revision as of 03:01, 22 April 2007

Introduction

SGI no longer packages 'freeware' for IRIX, as it was discontinued in 2006. Nekoware aims to be a community-driven replacement but I've found many packages to be compiled with far too many dependancies (vim needing GTK, etc) and not everything I want is available. Therefore, much like my experience with Opensolaris, I turned to pkgsrc...

Bootstrapping pkgsrc using gcc

As of pkgsrc 2007q1 pkgsrc bootstraps out of the box, unlike some earlier versions that have problems with PRIu64.

Download the SGI freeware binary of gcc from SGI freeware and read the documentation.

Make sure you have compiler_dev.sw.base installed (notably c_dev and c++_dev). These can be found on your IRIX 6.5 developer foundation CD.

Install the gcc tardist using the `tardist` command as root.

Add /usr/freeware/bin to your $PATH.

Patch your spec file if you want to default gcc to 64 bit mips4 mode as noted here or download a pre-patched spec. I had to patch on a freebsd box because IRIX' patch didn't like the diff.

Download pkgsrc 2007q1 or later from netbsd's ftp and untar it to /usr.

cd into /usr/pkgsrc/bootstrap, set CC=gcc and ./bootstrap

TO BE CONTINUED

Build problems

Building gcc from pkgsrc

I currently don't know how to do this. The SGI freeware gcc binary seems to be working fine.

lang/perl5

Configure fails with invalid option -64 or some such nonsense, edit the pkgsrc Makefile and remove it.

archivers/unzip

The compiler coredumps when building. To fix:

 bmake build (wait for it to segfault)
 cd work/unzip*
 vi Makefile (and remove the definition of LF2)
 gmake clean; gmake generic2 (generic doesn't work..?)
 cd ../../
 bmake install clean

lang/ruby

When you run ruby it complains about not being able to map the soname for libruby. The solution is:

 export LD_LIBRARY64_PATH=/usr/pkg/lib

A more general solution might be around, haven't done the research yet.

Useful links