mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-15 14:15:54 -06:00
[GH-ISSUE #241] libQmlNet.so: undefined symbol on newer Linux #154
Labels
No labels
bug
enhancement
help wanted
help wanted
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/qmlnet#154
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hengestone on GitHub (Jul 1, 2021).
Original GitHub issue: https://github.com/qmlnet/qmlnet/issues/241
Trying to run an example on Ubuntu 21.04 I get:
The symbol is defined in
libstdc++.so.6.0.29as expected. Andlibdl.so.2is available and loaded when the above is run (from strace output).My suspicion is that
Qml.Net.LinuxBinariesneeds to be rebuilt, but I'm not sure.Any ideas?
Thanks!
@pauldotknopf commented on GitHub (Jul 7, 2021):
Ya, it needs to be rebuilt. I'm guessing gcc is different/newer on Ubuntu 21.04.
@hengestone commented on GitHub (Jul 12, 2021):
What is the best way to handle that? Build a custom version on MyGet and reference it in the project file? Or is there a way to rebuild the dependency locally? (I tried to find the answer in the dot net docs :-/ )
@pauldotknopf commented on GitHub (Jul 13, 2021):
The best bet is to avoid installing any of the
*.Native*nuget packages, and buildlibQmlnet.solocally and put it in/usr/local/lib(or wherever it needs to be).@hengestone commented on GitHub (Jul 15, 2021):
Thanks :)