Changeset 2910


Ignore:
Timestamp:
May 18, 2006, 1:39:59 PM (18 years ago)
Author:
ole
Message:

Added -Wall to compile options to track down why metis spits the dummy on cyclone

Location:
inundation/pymetis/metis-4.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • inundation/pymetis/metis-4.0/Lib/struct.h

    r2807 r2910  
    1212 */
    1313
    14 /* Undefine the following #define in order to use short int as the idxtype */
    15 #define IDXTYPE_INT
    16 
    17 /* Indexes are as long as integers for now */
    18 #ifdef IDXTYPE_INT
    19 typedef int idxtype;
    20 #else
    21 typedef short idxtype;
    22 #endif
     14typedef long idxtype;
    2315
    2416#define MAXIDX  (1<<8*sizeof(idxtype)-2)
  • inundation/pymetis/metis-4.0/Makefile.in

    r2105 r2910  
    44
    55# What optimization level to use
    6 OPTFLAGS = -O2
     6OPTFLAGS = -O2 -Wall
    77
    88# What options to be used by the compiler
    9 COPTIONS = 
     9COPTIONS =
    1010
    1111# What options to be used by the loader
Note: See TracChangeset for help on using the changeset viewer.