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 2cc9f9d commit ca826c5Copy full SHA for ca826c5
BinaryBuilderToolchains.jl/test/CToolchainTests.jl
@@ -157,8 +157,8 @@ ENV["TESTSUITE_OUTPUT_DIR"] = mktempdir(;cleanup=false)
157
@testset "make compile-all" begin
158
cd(joinpath(@__DIR__, "testsuite", "CToolchain")) do
159
EXCLUDED_DIRS = String[]
160
- # macOS doesn't do debug sections, so there's no compressing them.
161
- if Sys.isapple(target)
+ # Windows and macOS don't do debug sections, so there's no compressing them.
+ if Sys.isapple(target) || Sys.iswindows(target)
162
push!(EXCLUDED_DIRS, "07_compressed_debug_sections")
163
end
164
# the bootstrap GCC binutils doesn't have our deterministic strip patch
0 commit comments