| ... | ... | @@ -19,7 +19,6 @@ include_dirs: std.ArrayListUnmanaged(IncludeDir), |
| 19 | 19 | lib_paths: std.ArrayListUnmanaged(LazyPath), |
| 20 | 20 | rpaths: std.ArrayListUnmanaged(RPath), |
| 21 | 21 | frameworks: std.StringArrayHashMapUnmanaged(LinkFrameworkOptions), |
| 22 | | c_std: std.Build.CStd, |
| 23 | 22 | link_objects: std.ArrayListUnmanaged(LinkObject), |
| 24 | 23 | |
| 25 | 24 | strip: ?bool, |
| ... | ... | @@ -164,7 +163,6 @@ pub const CreateOptions = struct { |
| 164 | 163 | strip: ?bool = null, |
| 165 | 164 | unwind_tables: ?bool = null, |
| 166 | 165 | dwarf_format: ?std.dwarf.Format = null, |
| 167 | | c_std: std.Build.CStd = .C99, |
| 168 | 166 | code_model: std.builtin.CodeModel = .default, |
| 169 | 167 | stack_protector: ?bool = null, |
| 170 | 168 | stack_check: ?bool = null, |
| ... | ... | @@ -204,7 +202,6 @@ pub fn init(m: *Module, owner: *std.Build, options: CreateOptions, compile: ?*St |
| 204 | 202 | .lib_paths = .{}, |
| 205 | 203 | .rpaths = .{}, |
| 206 | 204 | .frameworks = .{}, |
| 207 | | .c_std = options.c_std, |
| 208 | 205 | .link_objects = .{}, |
| 209 | 206 | .strip = options.strip, |
| 210 | 207 | .unwind_tables = options.unwind_tables, |