Changes between Initial Version and Version 2 of Ticket #67570


Ignore:
Timestamp:
Jun 4, 2023, 2:19:05 PM (12 months ago)
Author:
mascguy (Christopher Nielsen)
Comment:

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 to bear: bulds failing for macOS 15 and earlier: needs cxx_standard 2017, and legacysupport for CLOCK_REALTIME
  • Ticket #67570 – Description

    initial v2  
    1 This port is failing to build for 10.15 and earlier, due to needing to build with a 2011 cxx compiler.
     1This port is failing to build for 10.15 and earlier, due to needing to build with a 2017 cxx compiler.
    22
    3 That was just fixed via the following commit:
     3From the project `CMakeLists.txt`:
    44
    5 https://github.com/macports/macports-ports/commit/41ac7dc6a8471d246d8e24736acbd864e9c367e4
     5{{{
     6set(CMAKE_CXX_STANDARD 17)
     7set(CMAKE_CXX_STANDARD_REQUIRED ON)
     8}}}
    69
    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:
     10In 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:
    811
    912https://github.com/macports/macports-legacy-support/pull/58