-
Notifications
You must be signed in to change notification settings - Fork 18
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
Doesn't build on Windows + MSVC #36
Comments
I am facing the same issue, Is this repo active? |
I can confirm that this issue still exists as of October. |
#40 I came up with a possible solution for windows users that I think may help solve this problem. turns out the flag for windows is called |
Thank you. It works! @Vizonex |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Installing cysimdjson using pip on Windows with MSVC fails.
It is due to MSVC not understanding the compiler flag
-Wno-deprecated
when compilingcysimdjson.cpp
.Also, MSVC won't understand
-std=c++17
and will ignore the flag (and use C++11). The syntax for MSVC is/std:c++17
.Here is the relevent error log:
The text was updated successfully, but these errors were encountered: