#-------------------------------------------------------------------------------# # PRODUCTION build settings for Linux g95 compiler #-------------------------------------------------------------------------------# # The compiler and linker name export FC="g95" export FL="g95" # Compiler and linker settings for PRODUCTION builds F_COMMON_FLAGS="" export FC_FLAGS="\ -c \ -O2 \ -fendian=big \ -ffast-math \ -ffree-form \ -fno-second-underscore \ -funroll-loops \ -malign-double \ ${F_COMMON_FLAGS}" export FL_FLAGS="\ ${F_COMMON_FLAGS}" echo "=========================================" echo " CRTM compilation environment variables:" echo " FC: ${FC}" echo " FC_FLAGS: ${FC_FLAGS}" echo " FL: ${FL}" echo " FL_FLAGS: ${FL_FLAGS}" echo "=========================================" echo