| ... | @@ -1188,6 +1188,7 @@ pub const LibExeObjStep = struct { | ... | @@ -1188,6 +1188,7 @@ pub const LibExeObjStep = struct { |
| 1188 | emit_llvm_ir: bool = false, | 1188 | emit_llvm_ir: bool = false, |
| 1189 | emit_asm: bool = false, | 1189 | emit_asm: bool = false, |
| 1190 | emit_bin: bool = true, | 1190 | emit_bin: bool = true, |
| | 1191 | emit_docs: bool = false, |
| 1191 | emit_h: bool = false, | 1192 | emit_h: bool = false, |
| 1192 | bundle_compiler_rt: bool, | 1193 | bundle_compiler_rt: bool, |
| 1193 | disable_stack_probing: bool, | 1194 | disable_stack_probing: bool, |
| ... | @@ -2033,6 +2034,7 @@ pub const LibExeObjStep = struct { | ... | @@ -2033,6 +2034,7 @@ pub const LibExeObjStep = struct { |
| 2033 | if (self.emit_llvm_ir) try zig_args.append("-femit-llvm-ir"); | 2034 | if (self.emit_llvm_ir) try zig_args.append("-femit-llvm-ir"); |
| 2034 | if (self.emit_asm) try zig_args.append("-femit-asm"); | 2035 | if (self.emit_asm) try zig_args.append("-femit-asm"); |
| 2035 | if (!self.emit_bin) try zig_args.append("-fno-emit-bin"); | 2036 | if (!self.emit_bin) try zig_args.append("-fno-emit-bin"); |
| | 2037 | if (self.emit_docs) try zig_args.append("-femit-docs"); |
| 2036 | if (self.emit_h) try zig_args.append("-femit-h"); | 2038 | if (self.emit_h) try zig_args.append("-femit-h"); |
| 2037 | | 2039 | |
| 2038 | if (self.strip) { | 2040 | if (self.strip) { |