Skip to content

Commit 1d17fab

Browse files
committed
Discourage -fomit-frame-pointer
1 parent 21a1c77 commit 1d17fab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Runner.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ function generate_compiler_wrappers!(platform::AbstractPlatform; bin_path::Abstr
542542

543543
function gcc_unsafe_flags!(p::AbstractPlatform, flags::Vector{String} = String[])
544544
if !allow_unsafe_flags
545-
return String["-Ofast", "-ffast-math", "-funsafe-math-optimizations"]
545+
return String["-Ofast", "-ffast-math", "-funsafe-math-optimizations", "-fomit-frame-pointer"]
546546
end
547547
return String[]
548548
end

test/runners.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ end
390390
@test !run(ur, cmd, iobuff; tee_stream=devnull)
391391
seekstart(iobuff)
392392
lines = readlines(iobuff)
393-
@test lines[2] == "BinaryBuilder: You used one or more of the unsafe flags: -Ofast, -ffast-math, -funsafe-math-optimizations"
393+
@test lines[2] == "BinaryBuilder: You used one or more of the unsafe flags: -Ofast, -ffast-math, -funsafe-math-optimizations, -fomit-frame-pointer"
394394
@test lines[3] == "Please repent."
395395

396396
ur = preferred_runner()(dir; platform=platform, allow_unsafe_flags=true)

0 commit comments

Comments
 (0)