Questions tagged [irix]

IRIX is the UNIX System V operating system produced by Silicon Graphics Inc.

IRIX, which was designed to run on SGI's workstations and servers, was based on UNIX System V with some features taken from BSD

18 questions
7
votes
3 answers

How can I avoid this error with setenv in C?

First disclosure: I am not much of a C programmer. I am trying to compile a set of C and Fortran codes with much pedigree, using a Makefile to generate an executable for engineering computation. I am using gcc 4.7.1 on sgi Irix (6.5.30). During…
Kaushik Mallick
  • 165
  • 2
  • 8
4
votes
1 answer

Monotonic clock on IRIX

I want to get a monotonic clock on IRIX, like: clock_gettime(CLOCK_MONOTONIC, &t); But CLOCK_MONOTONIC doesn't exist on IRIX. It has CLOCK_SGI_CYCLE, but that (as the names says) cycles too often (about every 90s on my machine in case you're…
Thomas
  • 4,208
  • 2
  • 29
  • 31
3
votes
3 answers

Where can I find prebuilt Subversion binaries for SGI IRIX?

We have a few SGI Onyx 350 and Orgin 350 systems running IRIX 6.5.x that we would like to install Subversion on. One of them will likely be used as a simple repository server running svnserve. The others will only need client installs. The…
bengineerd
  • 1,268
  • 1
  • 16
  • 18
3
votes
0 answers

Signal break-codes in Linux

I am porting a code from IRIX to Linux RedHat, that is currently using signal handlers with the form of void sig_handler (int sig, int code, struct sigcontext *). These codes are for example BRK_USERBP, BRK_SSTEPBP, BRK_OVERFLOW, BRK_DIVZERO and…
avish12
  • 107
  • 8
2
votes
1 answer

Porting IRIS GL to Open GL?

Hi I'm really new to IRIX, IRIS GL, and Motif. I must compile more than 30 C codes written in 1997. Because these sources require header files such as XmAll.h, Xlib.h, and so on, I thought I just needed Unix and Open Motif to compile them. I…
pnmn
  • 1,127
  • 1
  • 14
  • 22
1
vote
3 answers

How do I find the MAC address programatically on IRIX?

How do I find the MAC address of a network card on IRIX? I'd rather not shell out to something that displays it and parse the output. I'm coding C. Methods that require root access are acceptable.
Thomas
  • 4,208
  • 2
  • 29
  • 31
1
vote
2 answers

Shell script for loop: variable strangeness

My shell-fu is weak, and these SGI (IRIX 6.5) boxes aren't helping. It works as I would expect on Linux. The ultimate goal is to run one or more shell scripts on a remote system. There is one shell script in an appropriate location, so this should…
GraduateOfAcmeU
  • 342
  • 3
  • 9
0
votes
1 answer

Loading shared libraries in IRIX UNIX: failing due to ENOSPC

I am running into problems on an ancient IRIX 6.5 system. First a program did not find a shared library, because I moved the program from one machine to another. I then fetched the library and put it in a lib folder in my user's home and adapted…
GorillaPatch
  • 5,007
  • 1
  • 39
  • 56
0
votes
0 answers

OpenGL, extract "sprites" from .pzx and .mpl in GLS_BINARY_LSB_FIRST format

I'm seeking help in extracting sprites from an old file type. The sprites are stored in this >>GLS_BINARY_LSB_FIRST<< format in .pzx files, alongside with some other .mpl files. They seem to be in some kind of OpenGL format, although I did not find…
0
votes
0 answers

How do I install the Irix operating system over a network

I just bought an Irix machine off of eBay. It had 2 hard drives. It has some weird variables from the last user. What programs can I use to Net install the irix operating system onto my computer?
0
votes
2 answers

IRIX bash shell expands expression in single quotes, yet shouldnt

At the shell, I enter a single-quote and then carriage return and then a series of lines and then another single-quote: root@aim:/root > ' > @stat = lstat($ARGV[0]); > if (!@stat) { if (@stat = lstat($ARGV[0]);) { > print "nil\n"; > exit 0; > } >…
Terrence Brannon
  • 4,760
  • 7
  • 42
  • 61
0
votes
0 answers

How can I allocate enough memory for this program to m_fork in C?

I have an application running on IRIX which uses m_fork() to create a number of processes. Source code. When I run the application with 3 forks, everything works as expected. When I ask for four forks, it fails to fork with an "ENOMEM"…
Zach Bloomquist
  • 5,309
  • 29
  • 44
0
votes
1 answer

What does the 'co' command do in an IRIX shell

I'm trying to get some legacy fortran code compiled on an SGI workstation. In the Makefile, the lines .f: co $@ do appear. Make exits with the error sh: co: not found I tried googling for that program, but to no avail. Does anyone know…
Roberto
  • 3,003
  • 1
  • 18
  • 25
0
votes
2 answers

How can I enter a command that is over 256 Characters Long in IRIX

I connect to different types of computers every day. When I Telnet in, the first thing I do is run a command line script that is about 1150 characters long. I have no problem with Linux based systems, but if it is Unix based (ie IRIX), then my…
0
votes
1 answer

Equivalent for libSgm's Dial

I am porting a complex software from IRIX to Linux Red-Hat. It now uses the Dial widget from libSgm (see here for example). I searched quite a while and didn't find any equivalent/replacement for libSgm nor specifically for Dial, that I can use on…
avish12
  • 107
  • 8
1
2