authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-09-07 23:18:57+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-09-07 23:18:57+02:00
logb98b3252beea98522c25b88eb29b5e2d8a65adfe
treed63189712f3280b093e860e70eb6e16aeb59b6c4
parent0e152b76ac0da0f8132091202eba9f6cebd0e616

revert part of 945111ae92c28f8ad642a64af4dc83acd3bef4a5


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

lib/std/build.zig-9
...@@ -1623,7 +1623,6 @@ pub const LibExeObjStep = struct {...@@ -1623,7 +1623,6 @@ pub const LibExeObjStep = struct {
1623 /// Overrides the default stack size1623 /// Overrides the default stack size
1624 stack_size: ?u64 = null,1624 stack_size: ?u64 = null,
16251625
1626 use_unwind_tables: ?bool = null,
1627 want_lto: ?bool = null,1626 want_lto: ?bool = null,
1628 use_stage1: ?bool = null,1627 use_stage1: ?bool = null,
1629 use_llvm: ?bool = null,1628 use_llvm: ?bool = null,
...@@ -2506,14 +2505,6 @@ pub const LibExeObjStep = struct {...@@ -2506,14 +2505,6 @@ pub const LibExeObjStep = struct {
2506 }2505 }
2507 }2506 }
25082507
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 if (self.ofmt) |ofmt| {2508 if (self.ofmt) |ofmt| {
2518 try zig_args.append(try std.fmt.allocPrint(builder.allocator, "-ofmt={s}", .{@tagName(ofmt)}));2509 try zig_args.append(try std.fmt.allocPrint(builder.allocator, "-ofmt={s}", .{@tagName(ofmt)}));
2519 }2510 }