[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-08-07 Thread Dr. Robert Pasken
You have with the makefile another reference to a make. That call to make has a flag that is a valid gmake flag but is not a valid make flag. Make is interpreting that flag as a call to dmake. I constantly ran into this problem compiling METv1.1. Blame it on linux weenies who don't know how to w

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-23 Thread Manal Helal
Hi Thank you very much for your replies. I am a number of steps ahead after re-installing everything on a fresh Sun Solaris 10 (developer customized) - better than looking for the missing libraries. Sun Studio is loading my make files, compiling and running, using mpicc. However, I don't know

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-18 Thread Iain Bason
On Jul 17, 2008, at 4:17 AM, Manal Helal wrote: > 5) Do you know where I can get "Sun HPC ClusterTools Software > Administrator?s Guide"? Have you looked on docs.sun.com? Iain

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-18 Thread Iain Bason
On Jul 17, 2008, at 4:17 AM, Manal Helal wrote: > 1) making sure that studio is installed properly: > > a) > $ pkginfo |grep -i studio > gave me a long list of packages containing the word studio (not sure > if it helps to paste it here), but sure it is installed and running Here's what I get

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-17 Thread Manal Helal
Hi Thanks again for your replies. I tried all advised directions as follows: 1) making sure that studio is installed properly: a) $ pkginfo |grep -i studio gave me a long list of packages containing the word studio (not sure if it helps to paste it here), but sure it is installed and running b

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-15 Thread Iain Bason
On Jul 15, 2008, at 7:00 AM, Gerard Henry wrote: >> >> I installed the studio from a DVD sent to me by Sun >> Support in Sydney. It is Sun Studio 12, Solaris x86, >> the command was ./installer, and it started something >> like a graphical interface, but was basically a >> console, and it install

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-15 Thread Iain Bason
On Jul 15, 2008, at 1:57 AM, Manal Helal wrote: > Sorry the make file is as included in the first message, I changed > the project name from mmDst to myProj just to make it general, > > SO the make file is: > *** > myProj : main.o > mpicc -g -Wall -lmpe

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-15 Thread Gerard Henry
> SO the make file is: > *** > myProj : main.o > mpicc -g -Wall -lmpe -lm -o myProj main.c > > main.o : main.c main.h > mpicc -c -g main.c > > *** > from my point of view, you have to begin without using make

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-14 Thread Manal Helal
Hi Thank you for your reply. Sorry the make file is as included in the first message, I changed the project name from mmDst to myProj just to make it general, SO the make file is: *** myProj : main.o mpicc -g -Wall -lmpe -lm -o myProj main.c main.

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-14 Thread Josh Simons
On Jul 14, 2008, at 10:18 AM, Dmitry V Golovashkin wrote: >> Sun Cluster Tools is based on OpenMPI, not mpich. > > Why not include both implementations, OpenMPI and MPICH2 ? While both Open MPI and MPICH2 are open source MPI implementations, Sun is an active and contributing member of the Open M

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-14 Thread Dmitry V Golovashkin
> ?Sun Cluster Tools is based on OpenMPI, not mpich. Why not include both implementations, OpenMPI and MPICH2 ? On Mon, 2008-07-14 at 09:39 -0400, Iain Bason wrote: > On Jul 13, 2008, at 11:22 PM, Manal Helal wrote: > > > > > make: Fatal error in reader: makedebug, line 4: Unexpected end of > >

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-14 Thread Iain Bason
On Jul 13, 2008, at 11:22 PM, Manal Helal wrote: > > make: Fatal error in reader: makedebug, line 4: Unexpected end of > line seen > Current working directory /export/home/me/myProj This is a problem with the makefile. What are the first four lines of /export/home/me/myProj/makedebug? > I

[hpcdev-discuss] Migrating a Linux MPICH C source code to Sun Studio

2008-07-13 Thread Manal Helal
Hi I am brand new to Sun, but need to migrate a full application done on linux ansi C with mpich2 library, to run on SunFire X2200. I installed the Sun Studio, and created the project from the following make file: *** mmDst : main.o mpicc -g -Wall -lm