mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Merge pull request #2233 from francis2054/master
Update Troubleshooting.md
This commit is contained in:
commit
c04b99d102
1 changed files with 25 additions and 0 deletions
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue