Re: [U-Boot] [PATCH v3] config.mk: use memoization in cc-option macro to speed up compilation

2011-11-07 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1320679603-24847-1-git-send-email-daniel.schwierz...@googlemail.com> you wrote: > Apply memoization to cc-option macro by caching the results of the > gcc calls. This macro is called very often so using cached results > leads to faster compilation times. > >

[U-Boot] [PATCH v3] config.mk: use memoization in cc-option macro to speed up compilation

2011-11-07 Thread Daniel Schwierzeck
Apply memoization to cc-option macro by caching the results of the gcc calls. This macro is called very often so using cached results leads to faster compilation times. The old behaviour can be restored by defining the config option CONFIG_CC_OPT_CACHE_DISABLE=y. Signed-off-by: Daniel Schwierzeck