From 9ed9f7ae0f7e163e3bf321bb85cfc408ce3616b1 Mon Sep 17 00:00:00 2001 From: thefish Date: Thu, 24 Jan 2019 14:39:03 +0300 Subject: [PATCH] update linker --- link.sh | 2 ++ readme.md | 4 ++++ src/bearlibterminal/BearLibTerminal.go | 5 ----- src/ui/keyinput.go | 6 +++--- 4 files changed, 9 insertions(+), 8 deletions(-) create mode 100755 link.sh create mode 100644 readme.md diff --git a/link.sh b/link.sh new file mode 100755 index 0000000..f988a49 --- /dev/null +++ b/link.sh @@ -0,0 +1,2 @@ +#!/bin/bash +ln -s src/bearlibterminal/libBearLibTerminal.so . diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..4319808 --- /dev/null +++ b/readme.md @@ -0,0 +1,4 @@ +develpoment +--- + +run linker.sh to create symlink, go library headers are already configured to use .so in same folder with binary diff --git a/src/bearlibterminal/BearLibTerminal.go b/src/bearlibterminal/BearLibTerminal.go index 46913eb..099dd61 100644 --- a/src/bearlibterminal/BearLibTerminal.go +++ b/src/bearlibterminal/BearLibTerminal.go @@ -22,9 +22,6 @@ package bearlibterminal -// // #cgo LDFLAGS: -I/home/agurov/projects/zaar/alchemyst-go/src/bearlibterminal -L/home/agurov/projects/zaar/alchemyst-go/lib -lBearLibTerminal - -// // #cgo LDFLAGS: -L../../lib -lBearLibTerminal // #cgo LDFLAGS: -L. -Wl,-rpath -Wl,./ -lBearLibTerminal // #include // #include @@ -34,7 +31,6 @@ import ( "unsafe" ) - // compile with go build -o test // check relative path with objdump -p test | grep RPATH // must be: RPATH ./ @@ -43,7 +39,6 @@ import ( // when development is complete, just $ sudo rm /etc/ld.so.conf.d/libbearterminal.conf // compiled binaties must still work in same folder with .so - // // Keyboard scancodes for events/states // diff --git a/src/ui/keyinput.go b/src/ui/keyinput.go index ea3c8b4..7603edf 100644 --- a/src/ui/keyinput.go +++ b/src/ui/keyinput.go @@ -19,13 +19,13 @@ func ReadKey() (string, int) { pressed = Scancodemap[key] - if (blt.Check(blt.TK_SHIFT) != 0) { + if blt.Check(blt.TK_SHIFT) != 0 { pressed = "Shift+" + pressed } - if (blt.Check(blt.TK_ALT) != 0) { + if blt.Check(blt.TK_ALT) != 0 { pressed = "Alt+" + pressed } - if (blt.Check(blt.TK_CONTROL) != 0) { + if blt.Check(blt.TK_CONTROL) != 0 { pressed = "Ctrl+" + pressed } fmt.Println(pressed)