| ... | ... | @@ -1623,7 +1623,6 @@ pub const LibExeObjStep = struct { |
| 1623 | 1623 | /// Overrides the default stack size |
| 1624 | 1624 | stack_size: ?u64 = null, |
| 1625 | 1625 | |
| 1626 | | use_unwind_tables: ?bool = null, |
| 1627 | 1626 | want_lto: ?bool = null, |
| 1628 | 1627 | use_stage1: ?bool = null, |
| 1629 | 1628 | use_llvm: ?bool = null, |
| ... | ... | @@ -2506,14 +2505,6 @@ pub const LibExeObjStep = struct { |
| 2506 | 2505 | } |
| 2507 | 2506 | } |
| 2508 | 2507 | |
| 2509 | | if (self.use_unwind_tables) |use_unwind_tables| { |
| 2510 | | if (use_unwind_tables) { |
| 2511 | | try zig_args.append("-funwind-tables"); |
| 2512 | | } else { |
| 2513 | | try zig_args.append("-fno-unwind-tables"); |
| 2514 | | } |
| 2515 | | } |
| 2516 | | |
| 2517 | 2508 | if (self.ofmt) |ofmt| { |
| 2518 | 2509 | try zig_args.append(try std.fmt.allocPrint(builder.allocator, "-ofmt={s}", .{@tagName(ofmt)})); |
| 2519 | 2510 | } |