From 6fa038ffbd3fe329409700405fc67317ed6b5057 Mon Sep 17 00:00:00 2001 From: Samuel Fontes <43213783+SamuelFontes@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:28:59 -0300 Subject: [PATCH] Added 'build-essential' as a requirement on ubuntu I've had a fresh install of Kubuntu and for some reason that package was missing, maybe I removed it by mistake who knows. So when I tried to run the project I got errors like these: ./../go/pkg/mod/github.com/gen2brain/raylib-go/raylib/rcamera.go:196:27: undefined: GetMouseDelta After installing build-essential this problem was solved, so it would be good to add it as the requirements because it can also happen to others. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d11c3da..2617498 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ It is also possible to use raylib-go without cgo (Windows only; see requirements ##### Ubuntu - apt-get install libgl1-mesa-dev libxi-dev libxcursor-dev libxrandr-dev libxinerama-dev libwayland-dev libxkbcommon-dev + apt-get install libgl1-mesa-dev libxi-dev libxcursor-dev libxrandr-dev libxinerama-dev libwayland-dev libxkbcommon-dev build-essential ##### Fedora