We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c2a7a commit 0a841baCopy full SHA for 0a841ba
test_mips.sh
@@ -0,0 +1,9 @@
1
+#!/bin/bash
2
+
3
+cd $(dirname $0) || exit 1
4
+GO_UDEV="go-udev-mips64"
5
+GOOS=linux GOARCH=mips64 go build -o ${GO_UDEV}
6
+chmod +x ./${GO_UDEV}
7
+docker run -it --rm -v "$PWD:$PWD" -w $PWD dockcross/linux-mips ./${GO_UDEV} -info
8
+# docker run -it --net=host -v=/dev:/dev --rm -v "$PWD:$PWD" -w $PWD dockcross/linux-mips ./${GO_UDEV} -monitor
9
0 commit comments