Andrew V. Teylu
Andrew V. Teylu
Indeed, there's actually errors about this: ``` [1/76] Building CXX object common/CMakeFiles/psychecommon.dir/text/TextElement.cpp.o ../common/text/TextElement.cpp:28:1: warning: 'psy::TextElement::TextElement(const char*, unsigned int)' redeclared without dllimport attribute: previous dllimport ignored [-Wattributes] 28 | TextElement::TextElement(const char*...
Right, I've got it to work, but it is a "hack". Here's a diff: ```diff diff --git a/C/API.h b/C/API.h index fa65fd8..18ca42e 100644 --- a/C/API.h +++ b/C/API.h @@ -21,6 +21,10 @@...
Compiling with MSVC probably isn't as easy as with MSYS -- especially with things such as the flags that the CMakeLists.txt set. **However** the error you've linked in your screenshot...
Hmm, yeah, I hadn't noticed that it seems this header is used in both "common" and "cfe" -- `std::ostream& operator
~It looks like this was fixed in:~ ~* 21717af2f5ba023e7390cdba79638ac95c8a01d1~ ~but the build was broken, so works as of:~ ~* 847c471cbc82729ce0e8a9f0e435a62614af64ff~ Currently this is hidden under the `--cc-pp` option, but still...
Hi @webknjaz, Thanks for taking a look! If I wanted to add some tests for this, do you know how these would look? Is it reasonable that CherryPy's test-suite could...
@Spacetown: all I had was my local changes that I highlighted in my original post. I tried to find any VMs/clones/etc. of `gcovr` I had knocking around so I could...
All I can say is that, _for me_, when I only had 70 GiB free (🤣), changing from `Release` to `MinSizeRel` was the difference between able to *install* and not...
Yeah, does `-Os` as you suggested, so I would guess the resulting `.o`s/`.a`s/`.so`s are already smaller before doing the install.
Actually, maybe we should just move the whole library to use: https://crates.io/crates/symbolic-demangle (which supports MSVC + gcc "simultaneously"). Thoughts?