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