Re: Ecw for Borland
- Posted by Euman <euman at BELLSOUTH.NET> Nov 04, 2000
- 426 views
Have you tried copying over ecw.lib in \euphoria\bin with the version of ecw.lib that came with the Borland version you probably would need to also copy over euphoria.h in \euphoria\include with that of the version supplied with the Borland version.. If you've already done this and it still doesnt work you probably need to try and download the Borland version again... My Borland version works fine.... euman at bellsouth.net ----- Original Message ----- From: "Ken Roger" <kennethroger at PRODIGY.NET> To: <EUPHORIA at LISTSERV.MUOHIO.EDU> Sent: Saturday, November 04, 2000 6:50 PM Subject: Ecw for Borland > I couldn't get the new Borland ecw to generate emake.bat for bcc32. It > insists on generating it for lcc even though there is no lcc environment > variable and there is a (otherwise unused) bcc environment variable. > > Compiling manually and using upx works. The winwire demo compiles to a 60k > executable, and the generic win32lib demo to 142k. > > @echo off > rem goecwb.bat > if "%1"=="" goto usage > if exist %1 goto usage > %eudir%\ecwb\ecw %1.exw > bcc32 -w- -5 -tW -e%1.exe *.c %eudir%\ecwb\ecw.lib > upx %1.exe > del *.c > del main_.h > del emake.bat > del objfiles.lnk > del *.obj > del %1.tds > goto done > :usage > echo usage: goecwb file --file.exw assumed, uses bcc32 > :done >