-
Notifications
You must be signed in to change notification settings - Fork 75
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
htm.dummy extension #998
Comments
I cannot reproduce this error. |
@dkeeney Thank You. Issue continue to persist.
Complete Log |
Hmmm,well I cloned a fresh copy of htm.core and did a full build on windows using Visual Studio 2022 and Python 3.11. Everything worked. |
Thank you @dkeeney tried again with virtual env, with complete new download, and build. But error persist. Though unable to understand where is the issue stemming from, could you please give some pointers. Error Log - |
I think this time, your 'build' folder at "C:\Users\aryabhatta\Documents\Programs\htm.core\htm.core-master\build" already existed so it did not actually do a build. The compile error issue stems from not having the C++ build environment in place when it compiles the placeholder object needed to package the bindings for Python so it did not know where to find stdio.h. This normally an indication that the build system is confused. When you run a build from scratch, the CMake build system will download and build each of the prerequisites. When that is finished, it caches everything in the build folder and then proceeds to compile the htm.core library itself, then the unit tests, then packages the Python bindings. If the build aborts for some reason, it often leaves the CMake cache in a strange state such that the next time you run the build, it just does not do what you expect. So that is why you need to delete the 'build' folder after a failed build. If that does not fix it...there must be something else that is different between our environments.
|
Windows 11 Pro x64 based
Microsoft (R) C/C++ Optimizing Compiler Version 19.36.32532 for x64
complete log: htm core logs.txt
The text was updated successfully, but these errors were encountered: