Skip to content
Snippets Groups Projects
Commit aee9590c authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'ci-image-1.24' into 'master'

[gitlab-ci] Bump debian-testing-dev image to 1.24

See merge request i4/manycore/emper!410
parents 3d374e46 4c8ff7d0
No related branches found
No related tags found
No related merge requests found
Pipeline #87638 passed
image: "flowdalic/debian-testing-dev:1.23"
image: "flowdalic/debian-testing-dev:1.24"
before_script:
- ulimit -a
......
// SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright © 2020-2021 Florian Schmaus
// Copyright © 2020-2022 Florian Schmaus
#pragma once
#include <algorithm>
#include <cstddef>
#include <functional> // for function
#include <optional>
......
......@@ -9,6 +9,7 @@
{ include: ["<bits/types/struct_tm.h>", "private", "<ctime>", "public" ] },
{ include: ["<bits/types/siginfo_t.h>", "private", "<signal.h>", "public" ] },
{ include: ["<bits/types/stack_t.h>", "private", "<signal.h>", "public" ] },
{ include: ["<bits/chrono.h>", "private", "<chrono>", "public" ] },
{ include: ["<boost/detail/basic_pointerbuf.hpp>", "private", "<boost/program_options.hpp>", "public"], },
{ include: ["<boost/lexical_cast/bad_lexical_cast.hpp>", "private", "<boost/program_options.hpp>", "public"], },
{ include: ["<boost/program_options/detail/parsers.hpp>", "private", "<boost/program_options.hpp>", "public"], },
......@@ -26,4 +27,10 @@
{ symbol: ["__kernel_timespec", "private", "<liburing.h>", "public" ] },
{ symbol: ["__s32", "private", "<liburing.h>", "public" ] },
{ symbol: ["std::filesystem", "private", "<filesystem>", "public" ] },
# Workaround for https://github.com/include-what-you-use/include-what-you-use/issues/908
# Not actually sure if the currently listed headers, array and thread, are correct.
{ symbol: ["std::copy", "private", "<algorithm>", "public" ] },
{ symbol: ["std::copy", "private", "<array>", "public" ] },
{ symbol: ["std::copy", "private", "<thread>", "public" ] },
]
// SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright © 2020-2021 Florian Schmaus
// Copyright © 2020-2022 Florian Schmaus
#include <algorithm>
#include <atomic> // for atomic_thread_fence, memory_...
#include <cstdint> // for uint64_t
#include <cstdlib> // for exit, EXIT_FAILURE, EXIT_SUC...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment