authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-12-02 22:13:45-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-01-01 17:51:18-07:00
logdd45095ba13217021551f4988953f7e337f9a694
treebfa435c65c88f5e8847dac60a863df790a5b4825
parent142471fcc46070326526e3976f0150fe734df0b6

spelling fixes


1 files changed, 9 insertions(+), 11 deletions(-)

lib/std/Build/Module.zig+9-11
......@@ -30,21 +30,11 @@ stack_check: ?bool,
3030sanitize_c: ?bool,
3131sanitize_thread: ?bool,
3232code_model: std.builtin.CodeModel,
33/// Whether to emit machine code that integrates with Valgrind.
3433valgrind: ?bool,
35/// Position Independent Code
3634pic: ?bool,
3735red_zone: ?bool,
38/// Whether to omit the stack frame pointer. Frees up a register and makes it
39/// more more difficiult to obtain stack traces. Has target-dependent effects.
4036omit_frame_pointer: ?bool,
41/// `true` requires a compilation that includes this Module to link libc.
42/// `false` causes a build failure if a compilation that includes this Module would link libc.
43/// `null` neither requires nor prevents libc from being linked.
4437link_libc: ?bool,
45/// `true` requires a compilation that includes this Module to link libc++.
46/// `false` causes a build failure if a compilation that includes this Module would link libc++.
47/// `null` neither requires nor prevents libc++ from being linked.
4838link_libcpp: ?bool,
4939
5040/// Symbols to be exported when compiling to WebAssembly.
......@@ -161,7 +151,13 @@ pub const CreateOptions = struct {
161151 target: ?std.Build.ResolvedTarget = null,
162152 optimize: ?std.builtin.OptimizeMode = null,
163153
154 /// `true` requires a compilation that includes this Module to link libc.
155 /// `false` causes a build failure if a compilation that includes this Module would link libc.
156 /// `null` neither requires nor prevents libc from being linked.
164157 link_libc: ?bool = null,
158 /// `true` requires a compilation that includes this Module to link libc++.
159 /// `false` causes a build failure if a compilation that includes this Module would link libc++.
160 /// `null` neither requires nor prevents libc++ from being linked.
165161 link_libcpp: ?bool = null,
166162 single_threaded: ?bool = null,
167163 strip: ?bool = null,
......@@ -173,11 +169,13 @@ pub const CreateOptions = struct {
173169 stack_check: ?bool = null,
174170 sanitize_c: ?bool = null,
175171 sanitize_thread: ?bool = null,
172 /// Whether to emit machine code that integrates with Valgrind.
176173 valgrind: ?bool = null,
174 /// Position Independent Code
177175 pic: ?bool = null,
178176 red_zone: ?bool = null,
179177 /// Whether to omit the stack frame pointer. Frees up a register and makes it
180 /// more more difficiult to obtain stack traces. Has target-dependent effects.
178 /// more difficult to obtain stack traces. Has target-dependent effects.
181179 omit_frame_pointer: ?bool = null,
182180};
183181