From bb00c52479dab3f8ed5a35bdb84cff42c7ae2e58 Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Mon, 27 Mar 2023 17:29:12 -0500 Subject: [PATCH] Updated README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12e88e9..aafcf71 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ and link the library: `gcc example.c -o example -leasysock` ___ ### Troubleshooting -* **Library isn't loaded on Arch Linux, "cannot open shared object file: No such file or directory"** +* **Library isn't loaded on Arch Linux, "cannot open shared object file: No such file or directory"** This is becacuse Arch Linux [doesn't include '/usr/local/lib'](https://libreddit.tiekoetter.com/r/archlinux/comments/ws9qty/why_is_usrlocallib_not_in_the_default_search_path/) in its library search path by default. To add it, create a file ending in '.conf' under `/etc/ld.so.conf.d/`, and add '/usr/local/lib' to it. Then, run `ldconfig` as root. This file was written using [Dillinger](https://dillinger.io).