azarus
azarus
Here's also the output of `cc core.c` (which resembles the above but with more info): ``` core.c:736:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ core.c:1360:1: warning: control...
Aha! Found out, that running `cc -lm -DPLATFORM_DESKTOP -I/home//go/src/github.com/gen2brain/raylib-go/raylib/external/glfw/include core.c`, compiles, but gives me linker errors: https://ptpb.pw/0oKf
Got core.c to compile with the following: `cc -lm -fPIC -shared -DPLATFORM_DESKTOP -I/home//go/src/github.com/gen2brain/raylib-go/raylib/external/glfw/include core.c`, for what it's worth.
@raysan5 Hi, thanks for taking a look. I'm currently cooking up a `cgo_openbsd.go` file so I can properly make it work on OpenBSD
@raysan5 Okay, got it to build! Crashes upon startup though... Here if you want to take a look: c1b6308596d3cb18dad7397fe73a5d4e4b9743e1
Struggling with the same issue, but with my own `go get`-able site that godoc.org doesn't recognize. The import path is `import "go.azarus.ch/fuelconv"`
Hi Colin, Here's an hg repo: https://hg.sr.ht/~azarus/fuelconv I'll mirror it under https://git.sr.ht/~azarus/gfuelconv in a minute.
I also have weird behaviour using the alt key. Input: `alt + ` Output: `^[1^[a^[2^[b` Input: `alt + ` Output: nothing I would like the `alt + ` combination to...
Thanks, this helps a bunch! :) On 29 March 2018 16:19:06 CEST, "Josuah Demangeon⠠⠵" wrote: >@refacto: A workaround for having the life easier before a patch fix >this: you can...
``` $ /home/azarus/.cargo/bin/racer --version racer 2.0.10 $ ls -l /home/azarus/.cargo/bin/racer -rwxr-xr-x 1 azarus azarus 46210008 Aug 25 00:03 /home/azarus/.cargo/bin/racer ``` And yes, rust src is present in the given location....