Skip to content

Commit 0ec66a1

Browse files
committed
Merge pull request #90692 from akien-mga/scons-debug_paths_relative-opt-in
SCons: Make new `debug_paths_relative` option opt-in
2 parents e1dd1f4 + e5c689d commit 0ec66a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ opts.Add(
180180
)
181181
opts.Add(BoolVariable("debug_symbols", "Build with debugging symbols", False))
182182
opts.Add(BoolVariable("separate_debug_symbols", "Extract debugging symbols to a separate file", False))
183-
opts.Add(BoolVariable("debug_paths_relative", "Make file paths in debug symbols relative (if supported)", True))
183+
opts.Add(BoolVariable("debug_paths_relative", "Make file paths in debug symbols relative (if supported)", False))
184184
opts.Add(EnumVariable("lto", "Link-time optimization (production builds)", "none", ("none", "auto", "thin", "full")))
185185
opts.Add(BoolVariable("production", "Set defaults to build Godot for use in production", False))
186186
opts.Add(BoolVariable("threads", "Enable threading support", True))

0 commit comments

Comments
 (0)