tcom_allbefore.txt 1.3 KB

123456789101112131415161718192021
  1. This change causes trace compilation to be performed for all source files in a
  2. component before any of those files is compiled.
  3. This should reduce the impact of clashes where the tracecompiler ends up writing the same
  4. trace headers twice if two mmps in a component share source code. The reduced impact is
  5. that the clash can be detected before any dependent object files are built thus the
  6. rebuilding that normally happens after a clash detection is not necessary.
  7. There is another problem where some components have static libraries and dlls
  8. that share common source files. If tracing is enabled for the DLL these common
  9. files try to include their trace headers. When the source files are being built
  10. into the static library they also try to include trace headers which may not have
  11. been generated yet because tracing is not enabled for static libraries at this time
  12. since they don't have UIDs or any unique id to associate any trace points with.
  13. This change cannot fix this problem just as it doesn't prevent clashes but it at
  14. least makes sure that all trace headers exist before anything could possibly try
  15. to use them. This helps the build succeed while work is done to remove clashes and the static
  16. library tracing problem and it is no more incorrect than the current situation.