Running executable on Windows fails
See original GitHub issueFirst of all thank you for your work, having a GitHub action to install Qt in a cross-platform way is a lifesaver. I’m currently in the process of switching CI for the qxmpp
project over to GitHub actions, and Linux and OS X are building and running their test suite just fine.
On Windows I have been able to compile the test suite, but running it fails with Exit code 0xc0000135
. Unless I’m mistaken this means the dynamic linker is not finding a DLL, which surprises me as your action does add Qt5_DIR/bin
to PATH.
An example failing run:
https://github.com/qxmpp-project/qxmpp/actions/runs/62230835
Do you have any suggestion as to how to debug this?
Issue Analytics
- State:
- Created 3 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Cannot open EXE files - Windows Server | Microsoft Learn
Symptoms. When you try to open EXE files, you may get error messages like: "Access Deny", "Runtime error" and so on. · Cause....
Read more >Exe File is Not Opening: 6 Ways to Fix it [Force Launch]
If the exe file is not opening on your PC, it might be down to a problem with the registry. · A quick...
Read more >Cannot Open .EXE Files in Windows 10 – Fixed
According to Microsoft experts, this problem occurs due to corrupt registry settings, or system issues due to virus infection or third-party ...
Read more >How to fix .exe files not opening in Windows 10? - Auslogics
1. Check the system for malware. 2. Mend the .exe file association. 3. Change executable file parameters in the registry.
Read more >Fix: Cannot Open Executable (.EXE) Files on Windows
If users can run EXE files locally on their computers, but an error appears when launching files from network shared folders, then the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
often having the Qt bin in your path is not enough because that only solves the .dll loading of linked libraries. These two other variables solves the dynamic loading issues.
I had to set the following variables in order to make my application run (loading qt plugins and qml)