FreeCalypso > hg > tcs211-l1-reconst
view g23m/winebuild.sh @ 167:c19fb53b730b
dl1_com.c: reconstructed CPU load measurement code in layer_1_sync_HISR_entry()
reconstruction of this module can be considered complete at this point
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 07 Jun 2016 06:48:07 +0000 |
parents | 509db1a7b7b8 |
children |
line wrap: on
line source
#!/bin/sh # Something in TI's nasty build mechanism (at least when running under wine) # messes up the tty modes and fails to restore them upon finish. # This shell script wraps the needed wine invokation (nowhine actually, # itself a whine-suppressing wrapper around wine) with some stty magic # to preserve and restore the tty modes. # # Also added the TZ=GMT setting: without it Wine produces additional whines # about not being able to map my Unix timezone to a Weenie equivalent. set -x tty_mode_save=`stty -g` TZ=GMT nowhine cmd /c build.bat stty "$tty_mode_save"