std: Fix code model argument

This commit is contained in:
Hubert Jasudowicz 2020-11-11 19:04:24 +01:00 committed by Veikka Tuominen
parent 93844a5ef9
commit bf73db71f5

View File

@ -2131,7 +2131,7 @@ pub const LibExeObjStep = struct {
}
if (self.code_model != .default) {
try zig_args.append("-code-model");
try zig_args.append("-mcmodel");
try zig_args.append(@tagName(self.code_model));
}