/********************************** GFORTRAN COOK OPTIONS **********************************/ /********************************** COMPILER **********************************/ fc = gfortran; fc_version = [collect [fc] --version | head -1]; fc_compile_flag = "-c "; fc_out_flag = "-o "; /* debug flags */ fc_debug_flags =; /* optimization flafs */ fc_opt_flags =; /* includes */ fc_inc_flag = "-I "; fc_inc_join = [false]; /*if true, the includes are joined into a single argument with the separator */ fc_inc_sep = ; fc_mod_flag = "-J "; /********************************** LINKER **********************************/ ld = [fc]; ld_version = [fc_version]; ld_link_flag =; ld_out_flag = "-o "; /* debug flags */ ld_debug_flags =; /* optimization flafs */ ld_opt_flags =; /* includes */ ld_inc_flag = [fc_inc_flag]; ld_inc_join = [fc_inc_join]; /*if true, the includes are joined into a single argument with the separator */ ld_inc_sep = [fc_inc_sep]; ld_mod_flag = [fc_mod_flag]; /********************************** ARCHIVER **********************************/ ar = ar; ar_version = [collect [ar] --version | head -1]; ar_flags =;