From: Cyrill Gorcunov Date: Thu, 11 Nov 2010 08:18:44 +0000 (+0300) Subject: autoconf: Add --with-ccache option X-Git-Tag: nasm-2.11.05~467^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=325768ed4caca4c28f95e40c42dfdd13e86c58ba;p=platform%2Fupstream%2Fnasm.git autoconf: Add --with-ccache option Signed-off-by: Cyrill Gorcunov --- diff --git a/configure.in b/configure.in index c23bac1..8c6a429 100644 --- a/configure.in +++ b/configure.in @@ -152,5 +152,14 @@ if test $ac_cv_prog_make_vpathok = no; then done fi +dnl +dnl support cchace +dnl +AC_ARG_WITH([ccache], + [AC_HELP_STRING([--with-ccache], + [Compile with ccache])], + [CC="ccache $CC"], + []) + AC_OUTPUT_COMMANDS([mkdir -p output]) AC_OUTPUT(Makefile rdoff/Makefile doc/Makefile)