From 2196c8967cde043fdf9869491cd8026d970fd38c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 1 Jun 2005 11:42:51 +0000 Subject: Use --ccache to enable ccache for builds git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6543 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'tools/configure') diff --git a/tools/configure b/tools/configure index 1af5d2a54e..17001f8a4d 100755 --- a/tools/configure +++ b/tools/configure @@ -278,9 +278,16 @@ if test "$1" = "--help"; then echo "Rockbox configure script." echo "Invoke this in a directory to generate a Makefile to build Rockbox" echo "Do *NOT* run this within the tools directory!" + echo "" + echo "Usage: configure [--ccache]" exit fi +if test "$1" = "--ccache"; then + echo "Enable ccache for building" + ccache="yes" +fi + if test -r "configure"; then # this is a check for a configure script in the current directory, it there # is one, try to figure out if it is this one! @@ -627,6 +634,10 @@ else fi +if test "X$ccache" = "Xyes"; then + CC="ccache $CC" +fi + if test "X$endian" = "Xbig"; then defendian="ROCKBOX_BIG_ENDIAN" else -- cgit v1.2.3