Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Runner.jl
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr

# Simulate some of the `__OSX_AVAILABLE()` macro usage that is broken in GCC
# Currently, we only target 10.10, but eventually, we'll want to tailor this to `os_version(p)`
if 14 < 16
if Sys.isapple(p) && 14 < 16
# Disable usage of `clock_gettime()`
push!(flags, "-D_DARWIN_FEATURE_CLOCK_GETTIME=0")
end
Expand Down