Skip to content

Commit 666a341

Browse files
committed
Succesful build
1 parent 8a57814 commit 666a341

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

lib/std/Build.zig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,8 @@ pub const ObjectOptions = struct {
802802
/// Deprecated; prefer populating `root_module`.
803803
sanitize_thread: ?bool = null,
804804
/// Deprecated; prefer populating `root_module`.
805+
sanitize_address: ?bool = null,
806+
/// Deprecated; prefer populating `root_module`.
805807
error_tracing: ?bool = null,
806808
};
807809

@@ -822,6 +824,7 @@ pub fn addObject(b: *Build, options: ObjectOptions) *Step.Compile {
822824
.unwind_tables = options.unwind_tables,
823825
.omit_frame_pointer = options.omit_frame_pointer,
824826
.sanitize_thread = options.sanitize_thread,
827+
.sanitize_address = options.sanitize_address,
825828
.error_tracing = options.error_tracing,
826829
.code_model = options.code_model,
827830
}),

src/Compilation.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3078,6 +3078,7 @@ fn flush(
30783078
.is_small = comp.root_mod.optimize_mode == .ReleaseSmall,
30793079
.time_report = comp.time_report,
30803080
.sanitize_thread = comp.config.any_sanitize_thread,
3081+
.sanitize_address = comp.config.any_sanitize_address,
30813082
.fuzz = comp.config.any_fuzz,
30823083
.lto = comp.config.lto,
30833084
});

0 commit comments

Comments
 (0)