-
Notifications
You must be signed in to change notification settings - Fork 360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Including the Fortran C interface cmake module before using it #45
Conversation
The Fortran C interface cmake module needs to be included before using functions in the module. Without the fix a cmake build of the timing util will fail. [B4B]
This change should not affect existing ACME builds (The current build system does not perform a cmake build of the timing util library). This change is required for an upcoming PIO fix. |
Although this is part of the build script its also in the util/timing directory so alerting @worleyph. |
I've been waiting for this check-in (thanks Jayesh), and have already |
Just did a quick test on redsky, no adverse effects. merged. |
Remove trailing whitespace from all files. [BFB]
…ect#45) Update .gitmodules for submodules added in a previous PR Two submodules were added in PR E3SM-Project#43 improperly, causing fatal error on git submodule update. [BFB]
Move comments to Registry and update bld files to match
* Adds memory cleanup functions for some Omega classes For Omega classes that store all instances, this adds some erase/clear functions to clean up memory before the yakl finalize call. Updates developer guide to note the requirement for this cleanup.
* Adds memory cleanup functions for some Omega classes For Omega classes that store all instances, this adds some erase/clear functions to clean up memory before the yakl finalize call. Updates developer guide to note the requirement for this cleanup.
* Adds memory cleanup functions for some Omega classes For Omega classes that store all instances, this adds some erase/clear functions to clean up memory before the yakl finalize call. Updates developer guide to note the requirement for this cleanup.
Port to Carpenter
The Fortran C interface cmake module needs to be included before
using functions in the module. Without the fix a cmake build of
the timing util will fail.
[B4B]