Add ARM binary

This commit is contained in:
Jonathan Duck 2019-09-29 19:24:16 -07:00
parent 867a9e5a49
commit 3d8ff6dcea
2 changed files with 12 additions and 0 deletions

BIN
libui_linux_arm.a Executable file

Binary file not shown.

12
link_linux_arm.go Normal file
View File

@ -0,0 +1,12 @@
// +build !windows
// +build !darwin
package ui
// #cgo LDFLAGS: ${SRCDIR}/libui_linux_arm.a -lm -ldl
// #cgo pkg-config: gtk+-3.0
import "C"
func ensureMainThread() {
// do nothing; GTK+ doesn't care which thread we're on so long as we don't change it after starting
}