The following changes since commit 315fcfec5f22d6c0d059c4c3b70eaed53237eb5f: Fix rate limiting (2013-02-08 19:05:25 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): configure: allow --cpu to be specified configure | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/configure b/configure index d7ca77c..10a9a4c 100755 --- a/configure +++ b/configure @@ -129,6 +129,8 @@ exit_val=0 for opt do optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'` case "$opt" in + --cpu=*) cpu="$optarg" + ;; --cc=*) CC="$optarg" ;; --extra-cflags=*) CFLAGS="$CFLAGS $optarg" @@ -146,6 +148,7 @@ for opt do done if test "$show_help" = "yes" ; then + echo "--cpu= Specify target CPU if auto-detect fails" echo "--cc= Specify compiler to use" echo "--extra-cflags= Specify extra CFLAGS to pass to compiler" echo "--build-32bit-win= Specify yes for a 32-bit build on Windows" @@ -276,8 +279,7 @@ case "$cpu" in cpu="sparc" ;; *) - echo "Unknown CPU" - exit 1; + echo "Unknown CPU" ;; esac -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html