-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows installation instructions #41
base: master
Are you sure you want to change the base?
Conversation
Can you share the binaries? |
Sure thing, here's the zipped |
Thank you for the shared binaries. I have tried to run the "modeltest-ng.exe" from cmd but I get an error trying to call the exe. A pop up window that says, System error: “The program can't start because msys-2.0.dll is missing from your computer” I have tested on Windows 7 Home Premium 64 bit. Maybe this could help to include the dll into the .exe: I do not have any experience with compiling for Windows, so I have no idea for what to do. |
I run Windows 10; I suspect that there might be a number of issues attempting to run a Win10 binary on Win7. Copying and pasting .DLLs is generally not a very promising way to go! |
Thank you for your reply. |
Probably your best bet is to compile the binaries yourself... it's not as complicated as I thought it might be! I just followed the instructions in the README file and replaced the strings in the source files as detailed in #40. |
Thank you for the pull request. I didn't know MSYS before (I am not a Windows user), but it worked well. However, after installing the packages it worked just running $ mkdir build && cd build && cmake .. && make Is there a reason to build the libraries independently? |
I've spent the afternoon trying to compile Windows binaries (cf. #31); the below instructions got me there, after replacing the non-portable function
strcasecmp
withstrcmp
(dangerously..?), per #40 .