From 7b2e8cb634c4d26ea12c67dad3c421369452554e Mon Sep 17 00:00:00 2001 From: V-X Date: Thu, 10 Oct 2019 12:39:18 -0500 Subject: [PATCH] Update getting-started.md --- getting-started.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/getting-started.md b/getting-started.md index 996eda0..978016c 100644 --- a/getting-started.md +++ b/getting-started.md @@ -39,6 +39,9 @@ From there we're good to go as long as we have `gcc` in our path we can run go build ``` +**Note for Linux users** +- Linux by default only looks for shared objects at a specific system path, if you would preffer to load the shared objects from a different directory, simple set the `LD_LIBRARY_PATH` environment variable to the new directory containing the libraries. (`.` being current directory) + Now that we have a binary we're almost done. If you try to run it now, or, if you ran ``` go run main.go