-
Notifications
You must be signed in to change notification settings - Fork 579
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
Teuchos: undefined functions #10892
Comments
CC: @ibaned
This was code initially written by Kevin Long 20+ years ago which was just copied into that file. Note that Trilinos really needs to be cleaned up and have all of the PR builds put on @kliegeois, would you be willing to put in a PR to remove the undefined functions? |
@bartlettroscoe sure, I am on it! Thanks! |
…os_functions Automatically Merged using Trilinos Pull Request AutoTester PR Title: Fix #10892 PR Author: kliegeois
…s:develop' (d1bea2b). * trilinos-develop: Fix trilinos#10892
…s:develop' (d1bea2b). * trilinos-develop: Fix trilinos#10892
Fixed by #10894 |
Bug Report
@trilinos/teuchos
@bartlettroscoe @cgcgcg
Description
It seems that there are 2 functions which are declared but are not defined in Teuchos:
make_char_nfa
is declared here packages/teuchos/parser/src/Teuchos_FiniteAutomaton.hpp and then defined here packages/teuchos/parser/src/Teuchos_FiniteAutomaton.cpp with a different signature.aboutBuild
is declared here packages/teuchos/core/src/Teuchos_Utils.hpp and is not defined.It looks like both of them could be remove.
This has been noticed when trying to import a shared library built using pybind11 of Teuchos from python.
It is strange that these undefined symbols have never been an issue up to today.
The text was updated successfully, but these errors were encountered: