GCC has the ability to profile a program's runtime behaviour and optimize based on the results.
First one compiles with -fprofile-generate, then copies some profiling files to the runtime directory, then runs the program, then copies generated profile files back to the development system, then recompiles with -fprofile-use.
Has anyone done this with cdevtools? Seen any performance improvements?
First one compiles with -fprofile-generate, then copies some profiling files to the runtime directory, then runs the program, then copies generated profile files back to the development system, then recompiles with -fprofile-use.
Has anyone done this with cdevtools? Seen any performance improvements?