From 08f17a9efd3ec16827bdab2be2f8ca710fa1337e Mon Sep 17 00:00:00 2001 From: weijh Date: Wed, 21 Feb 2024 22:43:16 +0800 Subject: [PATCH] centos7 build --- Working-on-GNU-Linux.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Working-on-GNU-Linux.md b/Working-on-GNU-Linux.md index 91b96a2..d9bc302 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -172,6 +172,14 @@ The official Arch Repository contains the `raylib` package. Install via: pacman -S raylib ``` +### CentOS 7 +``` +yum -y install devtoolset-9\* +scl enable devtoolset-9 bash +make PLATFORM=PLATFORM_DESKTOP GRAPHICS=GRAPHICS_API_OPENGL_11 -B +``` + + ## The simplest possible build command After installing raylib from source or package manager, you can build a project with this command (modify as necessary): ```