You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compilation produces this error:
/home/developer/.conan2/p/b/aws-cc23dbad29a896/b/src/source/allocator.c:15:14: fatal error: Windows.h: No such file or directory
15 | # include <Windows.h>
| ^~~~~~~~~~~
The filename should be written as all lowercase, because this is how the file is actually named:
#include <windows.h>
I think this is not a Conan issue, but this seems a bug in the aws-c-common source code (not even the Conan recipe).
The recommendation would be to report this to the upstream library so it is fixed there.
In Conan client there is nothing that we can do, this would be a Conan issue.
On the recipes in ConanCenter, they are there to package the libraries, but not really to solve issues of the libraries, which should be reported and fixed upstream
Describe the bug
Compilation produces this error:
/home/developer/.conan2/p/b/aws-cc23dbad29a896/b/src/source/allocator.c:15:14: fatal error: Windows.h: No such file or directory
15 | # include <Windows.h>
| ^~~~~~~~~~~
The filename should be written as all lowercase, because this is how the file is actually named:
#include <windows.h>
Full log:
build-cmake.txt
How to reproduce it
No response
The text was updated successfully, but these errors were encountered: