diff -Nru advgetopt-2.0.39.3~jammy/cmake/AtomicNamesConfig.cmake advgetopt-2.0.40.0~jammy/cmake/AtomicNamesConfig.cmake --- advgetopt-2.0.39.3~jammy/cmake/AtomicNamesConfig.cmake 2022-07-14 22:06:05.000000000 +0000 +++ advgetopt-2.0.40.0~jammy/cmake/AtomicNamesConfig.cmake 2022-07-15 04:17:18.000000000 +0000 @@ -89,19 +89,7 @@ echo "--- atomic names starting ---" COMMAND - #"${ATOMIC_NAMES_PROGRAM}" - # "--output-path" - # "${CMAKE_CURRENT_BINARY_DIR}" - # "${CMAKE_CURRENT_SOURCE_DIR}/${ATOMIC_NAMES}" - # "--verbose" - "gdb" - "-batch" - "-ex" - "run" - "-ex" - "bt" - "--args" - "${ATOMIC_NAMES_PROGRAM}" + "${ATOMIC_NAMES_PROGRAM}" "--output-path" "${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/${ATOMIC_NAMES}" diff -Nru advgetopt-2.0.39.3~jammy/debian/changelog advgetopt-2.0.40.0~jammy/debian/changelog --- advgetopt-2.0.39.3~jammy/debian/changelog 2022-07-15 03:20:45.000000000 +0000 +++ advgetopt-2.0.40.0~jammy/debian/changelog 2022-07-15 04:17:18.000000000 +0000 @@ -1,4 +1,10 @@ -advgetopt (2.0.39.3~jammy) jammy; urgency=high +advgetopt (2.0.40.0~jammy) jammy; urgency=high + + * Removed the debugs. The g_validator_factories was the culprit. + + -- Alexis Wilke Thu, 14 Jul 2022 21:17:18 -0700 + +advgetopt (2.0.39.3~bionic) bionic; urgency=high * Changed the g_validator_factories in a pointer so we allocate before using. Binary files /tmp/tmp1hw3e7dz/aO2mMj2ELA/advgetopt-2.0.39.3~jammy/debian/.changelog.swp and /tmp/tmp1hw3e7dz/Yt9KdyY7eF/advgetopt-2.0.40.0~jammy/debian/.changelog.swp differ diff -Nru advgetopt-2.0.39.3~jammy/debian/control advgetopt-2.0.40.0~jammy/debian/control --- advgetopt-2.0.39.3~jammy/debian/control 2022-07-15 03:20:45.000000000 +0000 +++ advgetopt-2.0.40.0~jammy/debian/control 2022-07-15 04:17:18.000000000 +0000 @@ -1,6 +1,6 @@ Source: advgetopt Priority: extra -Maintainer: R. Douglas Barbieri +Maintainer: Alexis Wilke Build-Depends: cmake, cppthread-dev (>= 1.0.0.0~jammy), debhelper, diff -Nru advgetopt-2.0.39.3~jammy/tools/atomic_names.cpp advgetopt-2.0.40.0~jammy/tools/atomic_names.cpp --- advgetopt-2.0.39.3~jammy/tools/atomic_names.cpp 2022-07-14 18:51:10.000000000 +0000 +++ advgetopt-2.0.40.0~jammy/tools/atomic_names.cpp 2022-07-15 04:16:53.000000000 +0000 @@ -215,7 +215,6 @@ : f_opt(g_options_environment, argc, argv) { f_verbose = f_opt.is_defined("verbose"); -std::cerr << "atomic names was initialized\n"; } @@ -223,28 +222,24 @@ { int r(0); -std::cerr << "get filenames...\n"; r = get_filenames(); if(r != 0) { return r; } -std::cerr << "load input...\n"; r = load_input(); if(r != 0) { return r; } -std::cerr << "generate files...\n"; r = generate_files(); if(r != 0) { return r; } -std::cerr << "ran with success...\n"; return 0; } @@ -637,11 +632,8 @@ int main(int argc, char * argv[]) { -std::cerr << "atomic names main() entered...\n"; libexcept::init_report_signal(); -std::cerr << "report signal turned on...\n"; libexcept::verify_inherited_files(); -std::cerr << "verified file inheritance...\n"; try {