SGI IRIX6-MIPS
Add one of the following arguments to the command that you use to link your programs.
If you are compiling your code with -n32, use the following arguments:
- /opt/totalview/lib/libdbfork_n32.a
- -L/opt/totalview/lib -ldbfork_n32
For example:
cc -n32 -o program program.c -L/opt/totalview/lib -ldbfork_n32
If you are compiling your code with -64, use the following arguments:
- /opt/totalview/lib/libdbfork.a_n64.a
- -L/opt/totalview/lib -ldbfork_n64
For example:
cc -64 -o program program.c -L/opt/totalview/lib -ldbfork_n64
As an alternative, you can set the LD_LIBRARY_PATH environment variable and omit the -L option on the command line:
setenv LD_LIBRARY_PATH /opt/totalview/lib