Skip to content

Commit 28b49e3

Browse files
committed
Fix compilerBrokenImport on macOS M1
Signed-off-by: carlory <[email protected]>
1 parent 84b6fd7 commit 28b49e3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

candle-binding/semantic-router.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
//go:build !windows && cgo
2-
// +build !windows,cgo
1+
//go:build !windows && cgo && (amd64 || arm64)
2+
// +build !windows
3+
// +build cgo
4+
// +build amd64 arm64
35

46
package candle_binding
57

0 commit comments

Comments
 (0)