irix 6.5 + cplusplus compiling and debugging


 
Thread Tools Search this Thread
Top Forums Programming irix 6.5 + cplusplus compiling and debugging
# 1  
Old 09-12-2008
irix 6.5 + cplusplus compiling and debugging

Does anyone know some decent web links to c++ compilers and debuggers on Irix 6.5 systems ?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Samba for IRIX 6.5.26

I am not new to unix as a user, but new in setting up a workstation/server. I need to connect to my PC network to share files. I have heard Samba is a good tool, but they do not have a compiled version to download for IRIX. Can someone help me out? Thanks, Orrbit (1 Reply)
Discussion started by: orrbit
1 Replies

2. UNIX for Dummies Questions & Answers

IRIX 6.5 newbie

I have had the great fortune to get an sgi octane for free! :D I have managed to get me an OS(IRIX 6.5.19f) but I have some questions that I hope are not too simple to the gurus out there. Before I ask, I build macs and PC's and have had some experience hacking osx into old beige macs, and pcs,... (2 Replies)
Discussion started by: gheem
2 Replies

3. UNIX for Advanced & Expert Users

IRIX (SGI) question

How to change icon of my application (say script file) in IRIX icon view. (1 Reply)
Discussion started by: kosta_mirkin
1 Replies

4. UNIX for Dummies Questions & Answers

PASSLENGTH on Irix

My first post here, and hopefully it will be one of many to come. I am currently running multiple SGI's with different versions of Irix. I have a problem setting the minimum password length for users. I have modified the /etc/default/passwd so that PASSLENGTH = 8 However, it still... (1 Reply)
Discussion started by: herrmag
1 Replies

5. IP Networking

Internet in IRIX

I've got an O2 (R5000 32-bit) running IRIX 6.3. The problem is that my ISP requires me to have a DHCP client and I do not know how to enable it. I've tried via-wizard, but, only have the chance to enable a Static IP address. Does anybody know or can explain me how to enable it manually? :mad: ... (1 Reply)
Discussion started by: gastondoval
1 Replies

6. Filesystems, Disks and Memory

Disk Drive for Irix

I am looking for a Disk Drive for SGI Octane with Irix 6.4 . I was just hoping if someone out there can give me the vendor and part number ... Need a 9GB hopefully. (1 Reply)
Discussion started by: DPAI
1 Replies

7. Programming

Irix 5.3

I am using IRIX 5.3, When I type "man" in a UNIX text console from any machine on my network, I want to pull out the man pages from the station where they have been installed. Would anyone know the link? (3 Replies)
Discussion started by: Trixee
3 Replies

8. UNIX for Advanced & Expert Users

I am looking for a link in IRIX 5.3

I am using IRIX 5.3, When I type "man" in a UNIX text console from any machine on my network, I want to pull out the man pages from the station where they have been installed. Would anyone know the link? I would be so greatfull. (1 Reply)
Discussion started by: Trixee
1 Replies

9. UNIX for Dummies Questions & Answers

Irix

I have an SGI running IRIX 6.5 The prob is when i login as user and open a file , it gives me error as "OUT OF MEMORY" when i su or login as root . THis error disappers I have lot of space in the System . Thanx DPai (7 Replies)
Discussion started by: DPAI
7 Replies

10. UNIX for Dummies Questions & Answers

Problem with IRIX

I have a SGI sys with Irix running on it. Actually i cant see the console login . It just shows a blank blue screen . I can use the mouse though. Also i can remote login into the m/c I am new to SGI . Can anybody help (2 Replies)
Discussion started by: Jai
2 Replies
Login or Register to Ask a Question
mpif90(1)								MPI								 mpif90(1)

NAME
mpif90 - Compiles and links MPI programs written in Fortran 90 DESCRIPTION
This command can be used to compile and link MPI programs written in Fortran. It provides the options and any special libraries that are needed to compile and link MPI programs. It is important to use this command, particularly when linking programs, as it provides the necessary libraries. COMMAND LINE ARGUMENTS
-show - Show the commands that would be used without runnning them -help - Give short help -f90=name - Use compiler name instead of the default choice. Use this only if the compiler is compatible with the MPICH library (see below) -config=name - Load a configuration file for a particular compiler. This allows a single mpif90 command to be used with multiple compilers. -compile_info - Show the steps for compiling a program. This option can be used to see what options and include paths are used by mpif90. -link_info - Show the steps for linking a program. This optoin can be used to see what options and libraries are used by mpif90. -profile=name - Use the MPI profiling given by name. See below for details -mpe=name - Use an MPE profiling library. The behavior is similar to using -profile=mpe_name.conf . -echo - Show exactly what this program is doing. This option should normally not be used. others - are passed to the compiler or linker. For example, -c causes files to be compiled, -g selects compilation with debugging on most systems, and -o name causes linking with the output executable given the name name . ENVIRONMENT VARIABLES
The environment variables MPICH_F90 may be used to select different Fortran compiler and linker. Note that since MPICH is built with a particular C and Fortran compiler, change the compilers used can cause problems. Use this only if you could intermix code compiled with the different compilers. COMPATIBLE COMPILERS
The MPI library may be used with any compiler that uses the same lengths for basic data objects (such as long double ) and that uses com- patible run-time libraries. On many systems, the various compilers are compatible and may be used interchangably. There are exceptions; if you use the MPICH_F90 environment variable or the -f90=name command-line argument to override the choice of compiler and encounter prob- lems, try reconfiguring MPICH2 with the new compiler and installing MPICH2 in a separate location. See the installation manual for more details. EXAMPLES
To compile a single file foo.f , use mpif90 -c foo.f To link the output and make an executable, use mpif90 -o foo foo.o Combining compilation and linking in a single command mpif90 -o foo foo.f is a convenient way to build simple programs. SELECTING A PROFILING LIBRARY
The -profile=name argument allows you to specify an MPI profiling library to be used. name can have two forms: A library in the same directory as the MPI library The name of a profile configuration file If name is a library, then this library is included before the MPI library. This allows the simple use of libraries that make use of the MPI profiling interface and that are installed in the same directory as the MPI library. If name.conf is the name of a file in the sysconfdir directory, then this is read and may define the following variables: PROFILE_PRELIB - Libraries (and paths) to include before the MPI library PROFILE_POSTLIB - Libraries to include after the MPI library PROFILE_INCPATHS - C preprocessor arguments for any include files For example, to add /usr/local/myprof/include to the include path and the library libmyprof.a in /usr/local/myprof/lib to the link step, you could create the file myprof.conf with the lines PROFILE_PRELIB="-L/usr/local/myprof/lib -lmyprof" PROFILE_INCPATHS="-I/usr/local/myprof/include" and place it in the sysconfdir directory (this directory is set at configure time when MPICH is built). Then using the command-line argument -profile=myprof will cause these definitions to be added to the relevant compile commands. SEE ALSO
mpicc, mpicxx, mpif90, mpiexec LOCATION
mpif90.txt 11/2/2007 mpif90(1)