Skip to content
Snippets Groups Projects
Commit c0dc475b authored by Florian Fischer's avatar Florian Fischer
Browse files

[meson] include compare header only if available

parent 183afe36
No related branches found
No related tags found
No related merge requests found
// SPDX-License-Identifier: LGPL-3.0-or-later // SPDX-License-Identifier: LGPL-3.0-or-later
// Copyright © 2020 Florian Schmaus // Copyright © 2020 Florian Schmaus
#include <chrono> // for milliseconds, operator+, hig... #include <chrono> // for milliseconds, operator+, hig...
#include <compare> // for operator<, strong_ordering
#include <cstdlib> // for exit, EXIT_SUCCESS #include <cstdlib> // for exit, EXIT_SUCCESS
#include <iostream> // for operator<<, basic_ostream, endl #include <iostream> // for operator<<, basic_ostream, endl
#include <ratio> // for ratio #include <ratio> // for ratio
...@@ -12,7 +11,12 @@ ...@@ -12,7 +11,12 @@
#include "Fiber.hpp" // for Fiber #include "Fiber.hpp" // for Fiber
#include "Runtime.hpp" // for Runtime #include "Runtime.hpp" // for Runtime
#include "emper-common.h" // for UNUSED_ARG, workerid_t #include "emper-common.h" // for UNUSED_ARG, workerid_t
#include "emper.hpp" // for spawn #include "emper-config.h"
#include "emper.hpp" // for spawn
#ifdef EMPER_HAS_COMPARE_H
#include <compare> // for operator>=, strong_ordering
#endif
static unsigned int ITERATIONS = 10; static unsigned int ITERATIONS = 10;
......
...@@ -26,6 +26,11 @@ if option_urcu ...@@ -26,6 +26,11 @@ if option_urcu
emper_dependencies += [liburcu_dep] emper_dependencies += [liburcu_dep]
endif endif
cpp_compiler = meson.get_compiler('cpp')
if cpp_compiler.has_header('compare')
conf_data.set('EMPER_HAS_COMPARE_H', true)
endif
conf_data.set('EMPER_WORKER_SLEEP', get_option('worker_sleep')) conf_data.set('EMPER_WORKER_SLEEP', get_option('worker_sleep'))
conf_data.set('EMPER_WORKER_WAKEUP_STRATEGY', get_option('worker_wakeup_strategy')) conf_data.set('EMPER_WORKER_WAKEUP_STRATEGY', get_option('worker_wakeup_strategy'))
conf_data.set('EMPER_LOCKED_WS_QUEUE', get_option('locked_ws_queue')) conf_data.set('EMPER_LOCKED_WS_QUEUE', get_option('locked_ws_queue'))
......
...@@ -3,12 +3,16 @@ ...@@ -3,12 +3,16 @@
#include <cassert> // for assert #include <cassert> // for assert
#include <cerrno> // for ETIME #include <cerrno> // for ETIME
#include <chrono> // for microseconds, duration_cast, operator- #include <chrono> // for microseconds, duration_cast, operator-
#include <compare> // for operator>=, strong_ordering
#include <cstdint> // for int32_t #include <cstdint> // for int32_t
#include <cstdlib> // for exit, EXIT_SUCCESS #include <cstdlib> // for exit, EXIT_SUCCESS
#include "emper-config.h"
#include "io/Future.hpp" // for AlarmFuture #include "io/Future.hpp" // for AlarmFuture
#ifdef EMPER_HAS_COMPARE_H
#include <compare> // for operator>=, strong_ordering
#endif
using emper::io::AlarmFuture; using emper::io::AlarmFuture;
void emperTest() { void emperTest() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment