Add utils#39
Draft
Beanow wants to merge 6 commits intotauri-apps:mainfrom
Draft
Conversation
This should let `dlopen` (through `ld.so`) handle what paths to search in for the respective libraries. Additionally this fixes a mistake with the library filenames. Now using the `SONAME` instead of a symlinked name that happened to work when dev packages are installed.
Versions v0.7.1 and v0.7.2 relied exclusively on the .so files without .1 suffix. This is 'bad' because by convention that signals we don't care about ABI compatibility. However in weird cases (*ahum* Tauri bundled appimages) this .so file is the only one available. Using this feature flag allows them some time to fix this problem and bundle with the correct filename.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Provides some handy utilities.
Sharing draft to get some thoughts on it.
It should be invoked through
.tests/hello-examples.sh.docker,docker-compose.What it'll do is use an Ubuntu 18.04 container to build the example (as --release).
Then it should start up 4 containers,
Having different libraries installed as you would expect.
It should test crashes when lib is missing, and detection/fallback behavior.