Henrik Gaßmann
Henrik Gaßmann
> i don't see a reason why building with both `BUILD_SHARED_LIBS=ON` and `BUILD_STATIC_LIBS=ON` wouldn't be allowed `BUILD_STATIC_LIBS` isn't an option natively supported by CMake (see [docs](https://cmake.org/cmake/help/latest/search.html?q=BUILD_STATIC_LIBS) and [CMake issue](https://gitlab.kitware.com/cmake/cmake/-/issues/18609)). Instead...
> `file(GENERATE` does not allow to put `$` in the contents, as it would be used before the install phase Correct, I see how the wording from my previous comment...
Still reproduces with electron 29.
This hasn't been fixed yet.
I will chime in here as I work on the same project as LeonZimmermann. > I'm not sure why you'd want to call Object.freeze on the options object. The options...
@codebytere thanks!
> I'd like to simplify the compilation system and supply the arch-specific compiler arguments through some other mechanism, possibly #pragma's embedded in the codecs. This would introduce strong coupling between...
Since this hasn't seen any activity in a while, I'm going ahead and close this. Feel free to reopen if further qualifying information comes up (e.g. a [reprex]). [reprex]: https://stackoverflow.com/help/minimal-reproducible-example
Possibly related, I've started to observe `clang-analyzer-core.uninitialized.Assign` diagnostics being triggered by `OUTCOME_TRY`: ``` D:\devel\source\deeplex\deeplog\build\x64-windows-clang\vcpkg_installed\x64-windows-static\include\status-code/status_code.hpp:378:18: warning: Assigned value is garbage or undefined [clang-analyzer-core.uninitialized.Assign] , _value(static_cast(o)._value) [...] D:\devel\source\deeplex\deeplog\build\x64-windows-clang\vcpkg_installed\x64-windows-static\include\outcome/try.hpp:197:21: note: expanded from macro...