Mercurial > mplayer.hg
diff TOOLS/benchmark-gab/variables @ 7177:cba37985dec5
v0.9 of my compile+benchmark script, designed for my local boxes, shared on
NFS, etc..
Read README, and RTFS before using it.
Oh, and feel free to reverse/del, but al3x wanted it.
author | gabucino |
---|---|
date | Fri, 30 Aug 2002 21:16:52 +0000 |
parents | |
children | bcbbe5ee11fd |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TOOLS/benchmark-gab/variables Fri Aug 30 21:16:52 2002 +0000 @@ -0,0 +1,17 @@ +#!/bin/sh + +VENDOR="`cat /proc/cpuinfo | grep vendor_id | cut -c 13-`" +MODEL="`cat /proc/cpuinfo | grep "model name" | cut -c 14-`" +MHZ="`cat /proc/cpuinfo | grep MHz | cut -c 12-14` MHz" +MEMORY="`cat /proc/meminfo | grep MemTotal | awk '{print $2}'` Kb" +BUILD="`echo $VENDOR $MODEL $MHZ | tr [\ ] [_]`" +VGA="`lspci | grep VGA | cut -c 36-`" + +export LOGFILE="`pwd`/$BUILD.logs/log-`date +\"%Y-%m-%d\"`" +export COMPILEOPTIONS="--enable-runtime-cpudetection" + +mkdir $BUILD.logs 2> /dev/null + +function wrtlog { + echo "[ `date +\"%Y-%m-%d %T\"` ] $*" >> "$LOGFILE" +}