Skip to content

Commit 3e1ca2b

Browse files
carloryrootfs
authored andcommitted
Fix compilerBrokenImport on macOS M1 (vllm-project#682)
Signed-off-by: carlory <[email protected]> Co-authored-by: Huamin Chen <[email protected]>
1 parent 39f1079 commit 3e1ca2b

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)