skip to Main Content

Since using Xcode 14.3 I get the following warnings while building a project as usual:

Will not do cross-module incremental builds, priors saved at TimePoint(seconds: 1682802841, nanoseconds: 0)), but the previous build started at TimePoint(seconds: 1682802841, nanoseconds: 665285000), at '/Volumes/DerivedData-ramdisk/PlayingAround3-bxofrzjmlkadwicxzlwhcctqhimt/Build/Intermediates.noindex/PlayingAroundPagage.build/Debug/Interleaf.build/Objects-normal/arm64/Interleaf-master.priors'

This seems to suggest that the previous build started 665285000 nanoseconds in the future so I get that Xcode might have an issue.. I might have interpreted this wrong though. Can I fix the warning somehow?

2

Answers


  1. Chosen as BEST ANSWER

    Might be related to putting the Xcode build folder on a ramdisk, which was not an issue before and does not seem to be now either, with just the warning being a bit annoying.

    Seems to be fixed with Xcode 15.0 beta. Haven't found a solution for 14.3.


  2. The warnings went away after I built the project from clean (Product > Clean Build Folder...).

    I think this warning has to do with building the project using a newer version of Xcode when there are still build products sitting around from an older version of Xcode.

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