This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Increasing Build Speed

Hello,

is there a way to increase the build speed of the real view compiler? At work we have a project which uses C++ /SAM9263 CPU which takes about 10 Minutes at the moment. My colleagues tried pre-compiled headers but it still takes very long. Is it possible to start multiple threads like in an Eclipse/GNU compiler environment?

Parents
  • Multiple CPUs, a hyperthreaded CPU or multi-core CPU will allow concurrent execution.

    But for compilation, you may want to run more than one compilation at a time even with single-core, non-hyperthreaded single-processor. That depends on how large percentage of the build time that is related to code optimization (CPU-bound) or disk-operations.

    I would definitely recommend looking for a make that supports concurrent compilations.

Reply
  • Multiple CPUs, a hyperthreaded CPU or multi-core CPU will allow concurrent execution.

    But for compilation, you may want to run more than one compilation at a time even with single-core, non-hyperthreaded single-processor. That depends on how large percentage of the build time that is related to code optimization (CPU-bound) or disk-operations.

    I would definitely recommend looking for a make that supports concurrent compilations.

Children
No data