NCEP CCS Conversion Guide
Issues Converting FORTRAN and C/C++ Programs
Back to Main Page
Topic: C Compiler Not Taking -q64 Default
Posted by: Julia Zhu
Updated by
Post Date: 08/06/2002
Last Updated: 
Problem:  The C compiler on frost/snow will not take the compile with -q64 by default.  IBM is working to fix this problem in the compiler.  

Solution: Add "-q64" to "cc" compile for the "C" codes and it should work.

Example:

Change 
   cc -c ccwords.c
to
   cc -q64 -c ccwords.c
 
 

Back to Main Page