Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arm64 version not compatible with M3 Macbook Pro #444

Open
kubealex opened this issue Mar 31, 2024 · 3 comments
Open

arm64 version not compatible with M3 Macbook Pro #444

kubealex opened this issue Mar 31, 2024 · 3 comments

Comments

@kubealex
Copy link

Describe the bug
The ARM64 version doesn't work natively, but requires Rosetta.

To Reproduce
Steps to reproduce the behavior:

  1. Download the ARM64 version
  2. Open it
  3. Visualize a prompt asking to install Rosetta

Expected behavior
It works

Screenshots
If applicable, add screenshots to help explain your problem.

Versions (please copy from the About dialog or complete manually):

  • Version of Angry IP Scanner - 3.9.1
  • OS, version, CPU architecture - MacOS 14.4.1 (23E224) - M3 ARM64
@eaglexeye69
Copy link

Same issue as #439

@ulrichloose
Copy link

The only problem is the shell script "ipscan" to start, but the Mac cannot recognize which processor the program was compiled for.

Simple solution: The shell script must be compiled into a binary file... For example, with https://github.com/chris1111/SHC-3.8.9b

Once that is done, a somewhat complicated procedure follows, because the Mac keeps a meticulous eye on changes to an app... So create a new folder and copy the entire Contents folder into the new folder. Here the shell script can now be replaced with the compiled binary version. Finally, rename the new folder to "Angry IP Scanner.app" and the Mac will then monitor this program.

It makes sense to then delete the extended attributes "xattr -cr path to the app and finally sign it ad hoc - "codesign --force --deep -s - path to the app.

or - download at https://github.com/ulrichloose/ipscan...

Bildschirmfoto 2024-07-15 um 18 59 41

@danielrumata
Copy link

As ulrichloose described, the problem lies in ipscan being a shell script and not a binary executable. Here are the terminal commands to fix it. Note you will need shc to compile the shell script to binary executable (install it via homebrew or build it from source).
cd /Applications/Angry\ IP\ Scanner.app/Contents/MacOS/
mv ipscan ipscan-backup
shc -f ipscan-backup -o ipscan
xattr -cr /Applications/Angry\ IP\ Scanner.app

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants