Skip to content

Commit d2bb341

Browse files
committed
feat: kcl zig and go lib initial dev version
Signed-off-by: peefy <[email protected]>
1 parent feb9173 commit d2bb341

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

go/plugin/plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func _Invoke(method, args_json, kwargs_json string) (result_json string) {
108108
result = new(MethodResult)
109109
}
110110

111-
// Encode result to JSO
111+
// Encode result to JSON
112112
data, err := json.Marshal(result.V)
113113
if err != nil {
114114
return JSONError(err)

zig/build.zig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ pub fn build(b: *std.Build) void {
6161
}
6262

6363
fn linkWindowsLibraries(lib: *std.Build.Step.Compile) void {
64-
lib.linkSystemLibrary("msvcrt");
6564
lib.linkSystemLibrary("userenv");
6665
lib.linkSystemLibrary("ole32");
6766
lib.linkSystemLibrary("ntdll");

0 commit comments

Comments
 (0)