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
The text was updated successfully, but these errors were encountered:
tomboehmer
changed the title
boost::ut::detail::cfg::largc are initialized with garbage on alpine linux.
boost::ut::detail::cfg::{largc,largv} are initialized with garbage on alpine linux.
Nov 22, 2024
Expected Behavior
__attribute__((constructor(101))) inline void cmd_line_args
should initialize the largc and largv from actual argc and argv.Actual Behavior
cmd_line_args
function then largc and largv retain their default values of zero: so at least the function gets calledSteps to Reproduce the Problem
podman run --rm -it alpine:3.20 ash
apk add g++
g++ -o main.out -D BOOST_UT_DISABLE_MODULE=1 -std=c++20 ut_test.cpp
Specifications
The text was updated successfully, but these errors were encountered: