Skip to content
Snippets Groups Projects
Commit 0ba821d1 authored by mattijs's avatar mattijs
Browse files

ENH: codeStream: added message if loading library

parent 8a8ca633
Branches
Tags
No related merge requests found
......@@ -98,6 +98,13 @@ bool Foam::functionEntries::codeStream::execute
// see if library is loaded
void* lib = dlLibraryTable::findLibrary(libPath);
if (!lib)
{
Info<< "Using #codeStream with " << libPath << endl;
}
// nothing loaded
// avoid compilation if possible by loading an existing library
if (!lib && dlLibraryTable::open(libPath, false))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment