This is preventing wstp-sys's build.rs script from working on Linux.
This should have been included in PR #28, which had significantly expanded Linux support for wolfram-app-discovery.
The mistake was that this match OperatingSystem::target_os() was copy-paste duplicated between WolframApp::wstp_static_library_path() and build_scripts::wstp_static_library_path(), but only the former was updated in #28.
I've partially refactor this logic out into a new wstp_static_library_file_name() function so that this particular mismatch doesn't reoccur.
This is preventing wstp-sys's build.rs script from working on Linux.
This should have been included in PR #28, which had significantly expanded Linux support for wolfram-app-discovery.
The mistake was that this
match OperatingSystem::target_os()
was copy-paste duplicated between WolframApp::wstp_static_library_path() and build_scripts::wstp_static_library_path(), but only the former was updated in #28.I've partially refactor this logic out into a new
wstp_static_library_file_name()
function so that this particular mismatch doesn't reoccur.