Dear all,
To build ACTS I use the command
aliBuild build ACTS -j 24
You can find the .sh file to build ACTS here alidist/acts.sh at master · alisw/alidist · GitHub
However, this does not work. I get the following error code
-- Build files have been written to: /misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/BUILD/4d37f2f37025c3801d557d80ce3c24ca177c39ac/ACTS
++ cmake --build . -- -j24 install
[1/352] Building CXX object Core/CMakeFiles/ActsCore.dir/src/Definitions/Common.cpp.o
[2/352] Building CXX object Core/CMakeFiles/ActsCore.dir/src/Digitization/DigitizationModule.cpp.o
[3/352] Building CXX object Core/CMakeFiles/ActsCore.dir/src/EventData/TrackStatePropMask.cpp.o
FAILED: Core/CMakeFiles/ActsCore.dir/src/EventData/TrackStatePropMask.cpp.o
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/ubuntu2204_x86-64/GCC-Toolchain/v13.2.0-alice1-3/bin/c++ -DActsCore_EXPORTS -I/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include -I/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/BUILD/4d37f2f37025c3801d557d80ce3c24ca177c39ac/ACTS/Core -isystem /misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/ubuntu2204_x86-64/boost/v1.83.0-alice2-21/include -isystem /misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/ubuntu2204_x86-64/Eigen3/3.4.0-local1/include/eigen3 -fPIC -O2 -std=c++20 -Wall -Wextra -Wpedantic -Wshadow -Wno-unused-local-typedefs -O2 -g -DNDEBUG -std=gnu++17 -fPIC -MD -MT Core/CMakeFiles/ActsCore.dir/src/EventData/TrackStatePropMask.cpp.o -MF Core/CMakeFiles/ActsCore.dir/src/EventData/TrackStatePropMask.cpp.o.d -o Core/CMakeFiles/ActsCore.dir/src/EventData/TrackStatePropMask.cpp.o -c /misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp
In file included from /misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:9:
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:27:6: warning: elaborated-type-specifier for a scoped enum must not use the 'struct' keyword
27 | enum struct TrackStatePropMask : uint8_t {
| ~~~~ ^~~~~~
| ------
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:27:32: error: found ':' in nested-name-specifier, expected '::'
27 | enum struct TrackStatePropMask : uint8_t {
| ^
| ::
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:27:13: error: 'TrackStatePropMask' has not been declared
27 | enum struct TrackStatePropMask : uint8_t {
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:27:42: error: expected unqualified-id before '{' token
27 | enum struct TrackStatePropMask : uint8_t {
| ^
In file included from /misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:11:
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:14:18: error: declaration of 'operator|' as non-function
14 | constexpr auto operator|(enum_t lhs, enum_t rhs) { \
| ^~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:14:28: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
14 | constexpr auto operator|(enum_t lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:14:40: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
14 | constexpr auto operator|(enum_t lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:20:18: error: declaration of 'operator&' as non-function
20 | constexpr auto operator&(enum_t lhs, enum_t rhs) { \
| ^~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:20:28: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
20 | constexpr auto operator&(enum_t lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:20:40: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
20 | constexpr auto operator&(enum_t lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:26:18: error: declaration of 'operator^' as non-function
26 | constexpr auto operator^(enum_t lhs, enum_t rhs) { \
| ^~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:26:28: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
26 | constexpr auto operator^(enum_t lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:26:40: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
26 | constexpr auto operator^(enum_t lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:32:18: error: declaration of 'operator~' as non-function
32 | constexpr auto operator~(enum_t op) { \
| ^~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:32:28: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
32 | constexpr auto operator~(enum_t op) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:37:19: error: declaration of 'operator|=' as non-function
37 | constexpr auto& operator|=(enum_t& lhs, enum_t rhs) { \
| ^~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:37:30: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
37 | constexpr auto& operator|=(enum_t& lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:37:38: error: 'lhs' was not declared in this scope
37 | constexpr auto& operator|=(enum_t& lhs, enum_t rhs) { \
| ^~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:37:43: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
37 | constexpr auto& operator|=(enum_t& lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:42:19: error: declaration of 'operator&=' as non-function
42 | constexpr auto& operator&=(enum_t& lhs, enum_t rhs) { \
| ^~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:42:30: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
42 | constexpr auto& operator&=(enum_t& lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:42:38: error: 'lhs' was not declared in this scope
42 | constexpr auto& operator&=(enum_t& lhs, enum_t rhs) { \
| ^~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:1: note: in expansion of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' was not declared in this scope
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:42:43: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
42 | constexpr auto& operator&=(enum_t& lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:39:36: error: 'TrackStatePropMask' does not name a type
39 | ACTS_DEFINE_ENUM_BITWISE_OPERATORS(TrackStatePropMask)
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/EnumBitwiseOperators.hpp:47:13: note: in definition of macro 'ACTS_DEFINE_ENUM_BITWISE_OPERATORS'
47 | constexpr enum_t& operator^=(enum_t& lhs, enum_t rhs) { \
| ^~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/EventData/TrackStatePropMask.hpp:41:44: error: 'TrackStatePropMask' has not been declared
41 | std::ostream& operator<<(std::ostream& os, TrackStatePropMask mask);
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:17:44: error: 'TrackStatePropMask' has not been declared
17 | std::ostream& operator<<(std::ostream& os, TrackStatePropMask mask) {
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp: In function 'std::ostream& Acts::operator<<(std::ostream&, int)':
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:18:14: error: 'TrackStatePropMask' does not name a type
18 | using PM = TrackStatePropMask;
| ^~~~~~~~~~~~~~~~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:20:15: error: 'PM' has not been declared
20 | if (mask == PM::None) {
| ^~
In file included from /misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:11:
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:23:44: error: 'PM' has not been declared
23 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Predicted) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:47: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:23:44: error: 'PM' has not been declared
23 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Predicted) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:56: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:25:44: error: 'PM' has not been declared
25 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Filtered) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:47: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:25:44: error: 'PM' has not been declared
25 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Filtered) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:56: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:27:44: error: 'PM' has not been declared
27 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Smoothed) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:47: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:27:44: error: 'PM' has not been declared
27 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Smoothed) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:56: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:29:44: error: 'PM' has not been declared
29 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Jacobian) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:47: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:29:44: error: 'PM' has not been declared
29 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Jacobian) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:56: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:31:44: error: 'PM' has not been declared
31 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Calibrated) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:47: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/src/EventData/TrackStatePropMask.cpp:31:44: error: 'PM' has not been declared
31 | os << "\n [" << (ACTS_CHECK_BIT(mask, PM::Calibrated) ? "x" : " ")
| ^~
/misc/alidata150/alice_u/cas/O2Simulation/alice_acts/sw/SOURCES/ACTS/v23.5.0-alice/v23.5.0-alice/Core/include/Acts/Utilities/Helpers.hpp:30:56: note: in definition of macro 'ACTS_CHECK_BIT'
30 | #define ACTS_CHECK_BIT(value, mask) ((value & mask) == mask)
| ^~~~
Prior to attempting to build ACTS I performed
git pull --rebase
in the alidist directory and I also upgraded ailBuild with pip.
I also tried with the options
--defaults o2
and
---defaults release
But both get stuck at the same place.
Does someone know what could be the error?
Cheers,
Cas