Deleting hypre files other than the library

2007-03-03 Thread Ben Tay
attachment was scrubbed... URL: http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20070303/9deb99de/attachment.htm

Problem with using --download-f-blas-lapack=1 in windows

2007-03-03 Thread Ben Tay
was scrubbed... URL: http://lists.mcs.anl.gov/pipermail/petsc-users/attachments/20070303/2736a299/attachment.htm

need help with makefile

2007-03-03 Thread P. Aaron Lott
Hi Satish, You're right the problem is from mpif90, I tried mpif90 -qfree -c -I. -g __unsteady_ex.F -o unsteady_ex.o but I'm getting the same error messages. The file unsteady_ex compiled fine before using petsc and the preprocessor, so I really don't know what the problem could be.

Problem with using --download-f-blas-lapack=1 in windows

2007-03-03 Thread Satish Balay
if you have installation problems - send us configure.log at petsc-maint at mcs.anl.gov Satish On Sat, 3 Mar 2007, Ben Tay wrote: Hi, I tried to compile PETSc with compaq visual fortran in cygwin. My command is $ ./config/configure.py --with-cc='win32fe cl' --with-fc='win32fe f90'

need help with makefile

2007-03-03 Thread Satish Balay
Can you send us the preprocessed __unsteady_ex.F file? Satish On Sat, 3 Mar 2007, P. Aaron Lott wrote: Hi Satish, You're right the problem is from mpif90, I tried mpif90 -qfree -c -I. -g __unsteady_ex.F -o unsteady_ex.o but I'm getting the same error messages. The file

need help with makefile

2007-03-03 Thread Satish Balay
What is the command that correctly compiles this file? [from your original makefile] Satish On Sat, 3 Mar 2007, P. Aaron Lott wrote: Hi Satish, I tried the order of the use statements and the include, but it didn't seem to matter. I really don't know much about make files or the linking

need help with makefile

2007-03-03 Thread Paul T. Bauman
Aaron, Don't want to be rude and interject, but I looked at the unsteady.F file - I've always had trouble compiling when 'use statements' come after variable declarations. Give a try putting things in this order: program use modules implicit none include statements variable declarations

need help with makefile

2007-03-03 Thread P. Aaron Lott
Hi Paul Satish, This order works. Thank you so much for your help. I really appreciate it. -Aaron On Mar 3, 2007, at 2:43 PM, Paul T. Bauman wrote: Aaron, Don't want to be rude and interject, but I looked at the unsteady.F file - I've always had trouble compiling when 'use