jedisct1 / dsvpn

A Dead Simple VPN.
MIT License
5.17k stars 395 forks source link

Updated README.md #81

Closed johnalanwoods closed 3 years ago

johnalanwoods commented 3 years ago

Updated README.md to highlight importance of using Single Instruction Multiple Data instructions on other ARM chips such as Apple M1.

jedisct1 commented 3 years ago

Does it actually make a difference on the M1?

NEON instructions are used unconditionally on arm64.

The instructions of the README file are mainly for ARM CPUs used in 32 bit mode (the Raspberry Pi 3 and 4 are 64 bit but are frequently used with a 32 bit Linux distribution).

johnalanwoods commented 3 years ago

Does it actually make a difference on the M1?

You're right, I just checked the mach-o binary and it's identical with or without the flag.

Sorry to waste your time @jedisct1 .