skip to Main Content

When trying to launch any app in Xcode 12.3 on any of the available simulator devices, I get the following error. It’s a new M1 MacBook Air running the latest macOS Big Sur.

ARM64 maximum VM address is '0x7ffffe000000', which is too low. Please add 'arm64_maxoffset=0xFC0000000' to your boot-args and reboot the device.
ThreadSanitizer: unsupported vm address limit 0x7ffffe000000, expected 0x800000000000.

It doesn’t seem right to that I have to have to add any launch arguments. Google returns nothing.

2

Answers


  1. Chosen as BEST ANSWER

    It turns out that having the thread sanitizer on caused this error. Disabling it solved it.

    Edit:

    You can disable the thread sanitizer under [YOUR TARGET] > Edit Scheme > Run and then uncheck the checkbox under the Info tab


  2. Select Build Settings and add arm64 in Excluded Architectures

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search