[oe-commits] [openembedded-core] 03/28: site: Cache config vars for ccache

git at git.openembedded.org git at git.openembedded.org
Sat Mar 26 08:04:12 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 857a4132fb20ec1e019179a575107143a4b09f5a
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Fri Mar 25 09:42:50 2016 -0700

    site: Cache config vars for ccache
    
    ccache's configure tries to do a runtime test to
    determine hw_cv_func_snprintf_c99 and hw_cv_func_vsnprintf_c99
    which wont work in OE.
    
    c99 versions of these functions are provided on all
    supported libc implementations in OE-Core
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/site/common-linux | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/site/common-linux b/meta/site/common-linux
index 21fcac1..0a752a4 100644
--- a/meta/site/common-linux
+++ b/meta/site/common-linux
@@ -42,6 +42,10 @@ bash_cv_job_control_missing=${bash_cv_job_control_missing=present}
 bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present}
 bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no}
 
+# ccache
+hw_cv_func_snprintf_c99=${hw_cv_func_snprintf_c99=yes}
+hw_cv_func_vsnprintf_c99=${hw_cv_func_vsnprintf_c99=yes}
+
 # coreutils
 gl_cv_func_fstatat_zero_flag=${gl_cv_func_fstatat_zero_flag=yes}
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list