Windows compatibility - #1
Conversation
|
Hi Ali, Instead of modifying all these places, you can just add this in |
|
Hi, Thanks for the guidance. Changes are modified accordingly. |
| if os.name == 'nt': | ||
| binpaths += [os.path.join('mingw-w64','bin')] | ||
| name = name + '.exe' | ||
|
|
There was a problem hiding this comment.
You probably want to remove this too. We are trying to add support for msvc not mingw 64 which are incompatible
There was a problem hiding this comment.
I don't think incompatibility applies to executables. Many executables are compiled on MingW and can be used by passing input arguments regardless of how they are compiled. Removing this will cause problems in the future, if not now. The "name = name + '.exe'" is also required as in windows executables need the extension in special cases.
Hi,
First efforts to make bob work on windows.
Thanks,
AKh