From c48cc8338b24f166c848f8263c0675e1f8fd94dd Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Thu, 18 Nov 2021 17:22:19 -0500 Subject: [PATCH] add warning that the user should only do this on x86_64/amd64 or i386 systems. People keep doing this on armhf/arm64 and expect it to work, and often break their apt installs --- Installing-on-Linux.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Installing-on-Linux.md b/Installing-on-Linux.md index c40d514..9cc7488 100644 --- a/Installing-on-Linux.md +++ b/Installing-on-Linux.md @@ -21,7 +21,12 @@ This is intended to give you an idea of how to compile PCSX2 from Git in Linux. ### Debian/Ubuntu build dependencies (32bit) -#### Enable 32-bit libraries +**WARNING, ONLY DO THIS IF ON THE x86_64/AMD64 or x86/i386 ARCHITECTURES** + +`dpkg --print-architecture` should return `amd64` or `i386`, otherwise this will NOT work and likely break your install
+You have been warned! + +#### Enable 32-bit libraries: `sudo dpkg --add-architecture i386`