-
Notifications
You must be signed in to change notification settings - Fork 70
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
MSVC compiler doesn't support C++11,which cause ERROR: Failed building wheel for pyopenjtalk #66
Comments
I'm not very familiar with C/C++, but I found some information that might be relevant. Microsoft's C++ Standard Library - Changelog
|
According to GitHub actions https://github.com/r9y9/pyopenjtalk/actions/runs/5934952653/job/16092609013, windows CI runs with Visual Studio Enterprise 2022 (version: 17.6.33829.357).
https://github.com/actions/runner-images/blob/win22/20230804.1/images/win/Windows2022-Readme.md I wonder if just adding |
Just tested on windows, running
|
I meet problem when building wheels for pyopenjtalk, followings are some errors during the building of openjtalk:
It seems the problem of C++ standard of the compiler, because
binary_function
has been removed in C++ 14. So I attempt to modify the compiler standard, then an amusing thing took place:2022 MSVC doesn't support C++11! The tool chain of MSVC was downloaded just yesterday. So I wonder how to tell the setup.py to use gcc.exe instead of cl.exe. Thx :D bro.
The text was updated successfully, but these errors were encountered: