Petr Kobalicek
Petr Kobalicek
One hint. When you grep "PCH allocation failure" there are no matches in LLVM. This message only appears in GCC source code. Are you sure compilers are not mixed here?
If we are going to add binary files to tests I would like to have a generator of these files in our repository. Could be as simple as a python...
What is the GCC version that fails here?
Interesting - I was under the impression that +crypto was deprecated and replaced with the two additional options, which maps AArch64 ISA Features closer to compiler flags. For example this...
This needs a CI repro first - since GH now allows AArch64 linux VMs I think it should be easier to repro.
This should be fixed in master, thanks! BTW only old GCCs have this issue - new GCC compilers build properly even without the fix.
I would need some time to check this, but to answer some questions: 1. Blend2D needs path operations, supporting only polygons is not the goal at the moment 2. STL...
I'm not sure what the intention is, but this should be configurable and not hardcoded. If your whole stack is static libraries, why would you want minio-cpp shared? Additionally, this...
vcpkg uses triplets, which contain the information about the shared/static choice. Unfortunately with vcpkg it's either ALL static or ALL shared (conan supports this option per library). Some libraries can...
I'm linking the following article that should explain what I'm talking about: - https://gcc.gnu.org/wiki/Visibility In other words, you cannot provide a good support for a shared library without using the...