We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccbbf37 commit ea0b49dCopy full SHA for ea0b49d
src/Runner.jl
@@ -456,6 +456,13 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
456
sanitize_compile_flags!(p, flags)
457
if Sys.isfreebsd(p)
458
add_system_includedir(flags)
459
+ if arch(p) == "aarch64"
460
+ append!(flags, [
461
+ # At the moment we know this is needed only on aarch64-freebsd:
462
+ # <https://github.com/JuliaPackaging/Yggdrasil/pull/10360#discussion_r1935608177>.
463
+ "-isystem /opt/$(aatriplet(p))/$(aatriplet(p))/sys-root/usr/include"
464
+ ])
465
+ end
466
end
467
468
if !Sys.isbsd(p)
0 commit comments