From 7c344e22ddc027b10b4c179c8b3e6c2667f42c05 Mon Sep 17 00:00:00 2001 From: Francis Date: Thu, 4 Jan 2024 21:42:36 +0100 Subject: [PATCH] Update Troubleshooting.md Added error and solution for an ARM issue Signed-off-by: Francis --- .../Troubleshooting.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/doc/md/Installation_Instructions/Troubleshooting.md b/doc/md/Installation_Instructions/Troubleshooting.md index a978ff8b2..6ef5704a5 100644 --- a/doc/md/Installation_Instructions/Troubleshooting.md +++ b/doc/md/Installation_Instructions/Troubleshooting.md @@ -307,3 +307,28 @@ Try running the client without the SESSION_MANAGER environment variable. ``` env -u SESSION_MANAGER ./pm3 ``` + +## found architecture 'x86_64', required architecture 'arm64' error +^[Top](#top) + +If you get the message + +``` +warning: ignoring file '/usr/local/Cellar/jansson/2.14/lib/libjansson.4.dylib': found architecture 'x86_64', required architecture 'arm64' +``` + +when running +```make clean && make -j``` + +then it likely means you are on an ARM device, possibly an Apple ARM computer. + +Solution: + +``` +brew install jansson +``` +Then run this again + +``` +make clean && make -j +```