Skip to content

Commit 47f32a5

Browse files
committed
Fix support linux + riscv64 #1639
1 parent 60250a3 commit 47f32a5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

internal/v4l2/v4l2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//go:build !linux
1+
//go:build !(linux && (386 || arm || mipsle || amd64 || arm64))
22

33
package v4l2
44

internal/v4l2/v4l2_linux.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build linux && (386 || arm || mipsle || amd64 || arm64)
2+
13
package v4l2
24

35
import (

0 commit comments

Comments
 (0)