From 8c3ab912f6db5a918c7a2ac36cd5b95106d7d7a6 Mon Sep 17 00:00:00 2001 From: nmatsuda Date: Mon, 28 Aug 2023 14:57:16 -0700 Subject: [PATCH] Updated SDL build commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb4db56..fb6d508 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Then download and build SDL2_gfx wget http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-1.0.4.tar.gz tar -zxvf SDL2_gfx-1.0.4.tar.gz cd SDL2_gfx-1.0.4 -./configure +./configure --build=arm-linux-gnueabihf --disable-mmx make -j4 && sudo make install ``` And finally SDL2_ttf @@ -56,7 +56,7 @@ And finally SDL2_ttf git clone https://github.com/libsdl-org/SDL_ttf.git cd SDL_ttf git checkout SDL2 -./configure --disable-harfbuzz-builtin --disable-freetype-builtin --without-x +./configure --disable-freetype-builtin --without-x make -j4 && sudo make install ```