authorgravatar for hubert.jasudowicz@gmail.comHubert Jasudowicz <hubert.jasudowicz@gmail.com> 2020-11-11 19:04:24+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-11-11 19:33:10-07:00
logeaa1db20025d7ad7e67cc410372e8380e889580b
tree484f5d9b51a0b972d2eda39bb91a85497f3c8ef0
parent1aec406311c69b366ec1da01975e0a3704a161b8

std: Fix code model argument


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

lib/std/build.zig+1-1
...@@ -2131,7 +2131,7 @@ pub const LibExeObjStep = struct {...@@ -2131,7 +2131,7 @@ pub const LibExeObjStep = struct {
2131 }2131 }
21322132
2133 if (self.code_model != .default) {2133 if (self.code_model != .default) {
2134 try zig_args.append("-code-model");2134 try zig_args.append("-mcmodel");
2135 try zig_args.append(@tagName(self.code_model));2135 try zig_args.append(@tagName(self.code_model));
2136 }2136 }
21372137