Re: comment and IBM xlf



Well you haven't given any examples of what you have tried so it's a
little hard to help. What you could try (and this works for g95) is to
use the c-preprocessor syntax:

#include "config.h"

and then use compiler options to ensure that the c-preprocessor is run
on the code prior to the fortran compiler. On g95 this is done with the
cpp option:

g95 -cpp -c fred.f90


Simon Geard

.