Date: | Mon Sep 26 17:37:56 1995 | |
Subject: | Re: External code and Silicon Graphics | |
From: | Julian Clinton | |
Volume-ID: | 950927.03 |
>We have just got new Silicon Graphics machine running IRIX 5.3 with poplog >14.5003. The problem is we cannot seem to get poplog to load external code. >When we compile c code to produce a .o file the linker claims it cannot find >the symbols. We do not know know how to produce .so files on this machine. On Silicon Graphics, you need to run a separate link phase to make it a shared object e.g. to convert 'foo.o' to a shared 'foo.so': ld -o foo.so -shared foo.o Hope this helps. Julian |