this post was submitted on 01 Jul 2026
29 points (100.0% liked)

Rust

8121 readers
19 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] KillTheMule@programming.dev 2 points 1 week ago (1 children)

Couldn't find any info, so maybe someone here knows: Is QT statically linkable, in particular when used from Rust? That's something that I really value in fltk.

[–] FizzyOrange@programming.dev 2 points 1 week ago (1 children)

Not really in practice. In older versions I have done it, but they really don't want you to. The binaries are only distributed as shared libraries, so you at least need to build Qt from source. And also whenever I build recent Qt apps even with QtWidgets it has a load of plugin files and other nonsense that it needs.

I'm sure it's possible with enough work but it's not simple like with fltk or egui or gpui.

[–] KillTheMule@programming.dev 2 points 1 week ago

Ahh too bad, thanks for the answer though :)