skip to Main Content

Xcode automatically updated yesterday and now I can’t build my app anymore.

  • Xcode version is 15.4
  • clang version is 15.0.0

And when I try to run/build the app this is the error I get:

<project folder>/clang:1:1 invalid version number in '-target arm64-apple-ios9999'

That’s it. The weirdest part is the 9999 number there, I can’t find it anywhere in the code, must be something Xcode is setting.

I tried running softwareupdate --all --install --force without success (it ended up updating my MacOS, but still same error).

Update

Installing and running from Xcode 15.3 works just fine.

2

Answers


  1. Chosen as BEST ANSWER

    I was on Sentry 8.24.0, upgrading to 8.26.0 fixed it for me.


  2. <script src="https://cdnjs.cloudflare.com/ajax/libs/react/18.2.0/umd/react.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/18.2.0/umd/react-dom.production.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.4.8/vue.global.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.5.1/knockout-latest.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.8.3/angular.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search