Skip to content

Commit e1e18b4

Browse files
authored
[Runner] Correctly use GCC march flags for GCC (#118)
1 parent 7d3f3d0 commit e1e18b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Runner.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
333333

334334
function gcc_compile_flags!(p::AbstractPlatform, flags::Vector{String} = String[])
335335
if lock_microarchitecture
336-
append!(flags, get_march_flags(arch(p), march(p), "clang"))
336+
append!(flags, get_march_flags(arch(p), march(p), "gcc"))
337337
end
338338
return flags
339339
end

0 commit comments

Comments
 (0)