I am getting this error from running Cl_run_cdf:
Error: The file "/home/icg149/Playground/test-socrates/run_socrates_o1nuudom/tmpa4zx63wp/CCMI_ZM_.tl" does not exist.
This happens because the full path is too long and is then truncated to the first 80 characters plus the appended ".tl". At least one location that does not account for longer paths is here:
|
CHARACTER (LEN=80) :: base_name |
Modern Linux systems allow for paths up to 4096 characters long.
Relatedly, while this is reported as an error Cl_run_cdf still exits with exit code 0.
I am getting this error from running
Cl_run_cdf:This happens because the full path is too long and is then truncated to the first 80 characters plus the appended ".tl". At least one location that does not account for longer paths is here:
socrates/src/aux/l_run_cdf.F90
Line 101 in 76a675b
Modern Linux systems allow for paths up to 4096 characters long.
Relatedly, while this is reported as an error
Cl_run_cdfstill exits with exit code 0.