Inquiry about Identifying the Compiler Used to Install WWIII Model on HPC #1140
-
Hi everyone, I have a question regarding the installation of the WWIII model on our HPC system. There is already a WWIII model installed in the HPC account, and I am attempting to replicate the installation in my own account. Specifically, I am seeking guidance on how to determine the compiler that was used to install the existing WWIII model. Knowing the compiler information is crucial for ensuring compatibility and replicating the setup accurately. Could someone kindly provide insights or steps on how I can identify the compiler used for the current WWIII model installation? Your assistance is highly appreciated. Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Have you reached out to who installed WW3 on your HPC system? |
Beta Was this translation helpful? Give feedback.
-
Sometimes the compiler stores its name and version in the executable. You can access this information using
The It's worth a try though! |
Beta Was this translation helpful? Give feedback.
-
To add to the |
Beta Was this translation helpful? Give feedback.
Sometimes the compiler stores its name and version in the executable. You can access this information using
objdump
ornm
, e.g.objdump -h your_exe
The
-h
flag displays the headers in the executable. The compiler version is sometimes stored in the.note
or.comment
headers. However, often this info is stripped out when doing a release build (without -g flags)...It's worth a try though!