build fails at 67% with:
error: 'uintptr_t' does not name a type
1385 | reinterpret_cast<uintptr_t>(stack_top) % kMaxStackAlignment == 0);
workaround
add to line 49 of owl/googletest/googletest/src/gtest-death-test.cc
#include <stdint.h>
this is followed by the error:
error: ‘dummy’ may be used uninitialized [-Werror=maybe-uninitialized]
1301 | StackLowerThanAddress(&dummy, &result);
workaround
#92 (comment)
System: Fedora 42
build fails at 67% with:
error: 'uintptr_t' does not name a type
1385 | reinterpret_cast<uintptr_t>(stack_top) % kMaxStackAlignment == 0);
workaround
add to line 49 of owl/googletest/googletest/src/gtest-death-test.cc
#include <stdint.h>
this is followed by the error:
error: ‘dummy’ may be used uninitialized [-Werror=maybe-uninitialized]
1301 | StackLowerThanAddress(&dummy, &result);
workaround
#92 (comment)
System: Fedora 42