-
Notifications
You must be signed in to change notification settings - Fork 42
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
BlackBear APPLICATION_NAME in Makefile prevents its use through dynamic linking #383
Comments
This was referenced Jan 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug Description
In the Makefile, blackbear currently sets
APPLICATION_NAME
toblackbear
.If a user requests to dynamically load objects from blackbear, they need to set
register_objects_from = 'BlackBearApp'
. The system in MOOSE that translates that to a library name puts an underscore between the words:black_bear
, which doesn't match the name of the library, which gets created based onAPPLICATION_NAME
.Steps to Reproduce
Try to link with BlackBear objects using
register_objects_from = 'BlackBearApp'
in theProblem
block of an input file.Impact
This makes it so users cannot dynamically link with BlackBear.
The text was updated successfully, but these errors were encountered: