changeset 211:02269c474131

ccdgen.exe moved from cdg3 to winexe, toolwrap/ccdgen created, cdg3/makecdg.sh changed to use the new tool wrapper
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 14 Oct 2016 21:38:07 +0000
parents 5dab5306bac5
children e7a67accfad9
files cdg3/ccdgen.exe cdg3/makecdg.sh toolwrap/ccdgen winexe/ccdgen.exe
diffstat 4 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
Binary file cdg3/ccdgen.exe has changed
--- a/cdg3/makecdg.sh	Fri Oct 14 19:53:30 2016 +0000
+++ b/cdg3/makecdg.sh	Fri Oct 14 21:38:07 2016 +0000
@@ -17,11 +17,9 @@
 rm -rf tempout
 mkdir tempout
 
-# nowhine is a wrapper around wine that suppresses some obnoxious whine,
-# see leo2moko.  TZ=GMT avoids some pesky time zone issues.
 # The arguments to ccdgen have been taken from TCS211 pdt_*.mak makefiles.
 
-TZ=GMT nowhine ccdgen.exe -h -m512 -a2 -ifflags-$1.h -otempout -Rpdf-mdf-list
+../toolwrap/ccdgen -h -m512 -a2 -ifflags-$1.h -otempout -Rpdf-mdf-list
 
 echo "Converting from CRLF to UNIX line endings"
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/toolwrap/ccdgen	Fri Oct 14 21:38:07 2016 +0000
@@ -0,0 +1,4 @@
+#!/bin/sh
+TZ=GMT
+export TZ
+exec nowhine `dirname $0`/../winexe/ccdgen.exe "$@"
Binary file winexe/ccdgen.exe has changed