How can I create a Standalone Bundle Portable file application using Dlang?

evilrat evilrat666 at gmail.com
Sun Jan 24 13:07:57 UTC 2021


On Sunday, 24 January 2021 at 11:44:04 UTC, Marcone wrote:

> Qt5 dlls

Well, you are out of luck. It is doable, but...

Normally you would likely want to use static libraries and link 
them into your executable, with Qt license however it becomes 
problematic in pretty much any case, you still can embed them 
using import() and unpack to a temporary directory for manual 
loading without violating the license.

Another problem mentioned before is implicit dynamic loading 
where you link with special stub .lib file for automatic loading, 
which is more common in C++ due to symbol name mangling, that 
will not work because your code won't have a chance to run main().



More information about the Digitalmars-d-learn mailing list