BewareMyPower opened a new pull request, #582: URL: https://github.com/apache/pulsar-client-cpp/pull/582
Fix failure like https://github.com/apache/pulsar-client-cpp/actions/runs/26558894568/job/78281724880 The runner is `macos-14`, which is `arm64`, but the workflow sets: ```bash CMAKE_OSX_ARCHITECTURES=x86_64 ``` The old CMake logic checked only `CMAKE_SYSTEM_PROCESSOR == x86_64`. On that runner, CMAKE_SYSTEM_PROCESSOR still reports the host architecture, arm64, so CMake skipped the x86 compile flags: `-msse4.2 -mpclmul`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
