Hi, everyone,
I am trying to compile ROMS using make under Cygwin in a Windows XP computer, and I am unable to make it work.
I edited Makefile and provided the value for the FORT macro as FORT = g95. And similarly I defined the environmental variables NETCDF_INCDIR and NETCDF_LIBDIR in CYGWIN-g95.mk.
After I typed "make" , the following measseges were coming out,
$ make
/usr/bin/cpp -P -traditional -DCYGWIN -I/usr/include -DCYGWIN -DI686 -DG95 -IInclude -INonlinear -IDrivers Modeules/mod_kinds.F > mod_kinds.f90
Bin/cpp_clean mod_kinds.f90
make: Bin/cpp_clean: Command not found
make: *** [mod_kinds.f90] Error 127
rm mod_kinds.f90
I checked the directory /usr/bin/perl the file cpp.exe is there.
Any help would be highly appreciated. Thank you very much
Lucy
a problem in compiling ROMS with "make" command un
cpp_clean is a Perl script. It is likely that you don't have Perl installed on your system or on your path. The top line of cpp_clean contains:
Check to see if /usr/bin/env is there too.
Code: Select all
#!/usr/bin/env perl