You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of relying on a workable CPP pre-processor the source code should be generated and added to the source code list.
This means that the sources will have an extra step of preprocessing to retain some of the preprocessor flags. I.e. #ifdef MPI... etc. These should be handled by a shipped sed script with for instance:
!BUD#if*
!preprocessed statements
!BUD#endif
These may then be outlined by:
sed -e 's/^[[:space:]]*!BUD#/#/g'
The text was updated successfully, but these errors were encountered:
Instead of relying on a workable CPP pre-processor the source code should be generated and added to the source code list.
This means that the sources will have an extra step of preprocessing to retain some of the preprocessor flags. I.e.
#ifdef MPI
... etc. These should be handled by a shippedsed
script with for instance:These may then be outlined by:
The text was updated successfully, but these errors were encountered: