Home > database >  Many application Shared library how to avoid repeated compile?
Many application Shared library how to avoid repeated compile?

Time:09-17

I have A B C three application, for example, they are all used to D.P BL this library, compile the results of each application compile D.P BL again, very waste of time and the performance of the machine

In the premise of not change D.P BL to D.P BD, how to avoid repeated compile? Or compile A can generate A B C three application?

CodePudding user response:

Using incremental compilation, no change of PBL, won't go to compile,

CodePudding user response:

refer to the original poster xp200798 response:
I have A B C three application, for example, they are all used to D.P BL this library, compile the results of each application compile D.P BL again, very waste of time and the performance of the machine

In the premise of not change D.P BL to D.P BD, how to avoid repeated compile? Or compile A can generate A B C three application?


1. Use incremental compilation

2. Avoid d.p bl object in the ancestors in the other group, if the object's ancestors, will certainly to recompile, error will not compile run

(3) is not recommended PBD, bad control run will go wrong
  • Related