<div dir="ltr">Hello,<br><br>I am trying to run MITgcm on [ARCHER2](<a href="https://www.archer2.ac.uk/">https://www.archer2.ac.uk/</a>), compiled using the gnu compiler. I'm getting the following runtime issue:<br><br>```<br>Error termination. Backtrace:<br>At line 1598 of file eeboot_minimal.f (unit = 15)<br>Fortran runtime error: Cannot open file '#dev/null': No such file or directory<br>```<div>I notice that it's not looking for "/dev/null", but for some reason instead the first character in the address is #. <br><br>The relevant block of code appears to be:<br><br>```      </div><div>        IF( myProcId .EQ. 0 ) THEN</div>          WRITE(fNam,'(A,A)') 'STDERR.', myProcessStr(1:iTmp)<br>          OPEN(errorMessageUnit,FILE=fNam,STATUS='unknown')<br>          WRITE(fNam,'(A,A)') 'STDOUT.', myProcessStr(1:iTmp)<br>          OPEN(standardMessageUnit,FILE=fNam,STATUS='unknown')<br>        ELSE<br>          OPEN(errorMessageUnit,FILE='/dev/null',STATUS='unknown')<br>          standardMessageUnit=errorMessageUnit<br>        ENDIF<div>```</div><div><br></div><div>Any ideas on what I should do? Where is the extra "#" character coming from?</div><div><br></div><div>Best,<br>Dan </div></div>