Changes between Initial Version and Version 2 of Ticket #67570
- Timestamp:
- Jun 4, 2023, 2:19:05 PM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #67570
-
Property
Summary
changed from
bear: bulds failing for 10.15 and earlier: needs cxx_standard 2011, and legacysupport for CLOCK_REALTIME
tobear: bulds failing for macOS 15 and earlier: needs cxx_standard 2017, and legacysupport for CLOCK_REALTIME
-
Property
Summary
changed from
-
Ticket #67570 – Description
initial v2 1 This port is failing to build for 10.15 and earlier, due to needing to build with a 201 1cxx compiler.1 This port is failing to build for 10.15 and earlier, due to needing to build with a 2017 cxx compiler. 2 2 3 That was just fixed via the following commit:3 From the project `CMakeLists.txt`: 4 4 5 https://github.com/macports/macports-ports/commit/41ac7dc6a8471d246d8e24736acbd864e9c367e4 5 {{{ 6 set(CMAKE_CXX_STANDARD 17) 7 set(CMAKE_CXX_STANDARD_REQUIRED ON) 8 }}} 6 9 7 However, there are also failures for earlier macOS releases, as it needs`CLOCK_REALTIME`. The latter is currently pending via the following PR, and `legacysupport` should be added once a new release is available with this functionality:10 In addition, there are also failures for earlier macOS releases, due to a requirement on `CLOCK_REALTIME`. The latter is currently pending via the following PR, and `legacysupport` should be added once a new release is available with this functionality: 8 11 9 12 https://github.com/macports/macports-legacy-support/pull/58