Merge pull request #2233 from francis2054/master

Update Troubleshooting.md
This commit is contained in:
Iceman 2024-01-04 22:13:12 +01:00 committed by GitHub
commit c04b99d102
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
```