Re: Translator problem?
- Posted by jeremy (admin) May 01, 2009
- 950 views
LarryMiller said...
I confirmed it, euc reports r2019
Hm. Something isn't right. The emake.bat file generated from 2019 includes % of completion. I just noticed your emake.bat does not.
Are you using the -emake option to generate a new emake.bat file? The newer translator compiles the code by default and does not create an emake.bat file. Maybe you have an old emake.bat file?
An example emake.bat generate from 2019 looks like:
@echo off if not exist hello.c goto nofiles echo Compiling with Watcom echo Compiling 13%% init-.c wcc386 /bt=nt /mf /w0 /zq /j /zp4 /fp5 /fpi87 /5r /otimra /s /IC:\Develop\Euphoria init-.c echo Compiling 50%% hello.c wcc386 /bt=nt /mf /w0 /zq /j /zp4 /fp5 /fpi87 /5r /otimra /s /IC:\Develop\Euphoria hello.c echo Compiling 75%% main-.c wcc386 /bt=nt /mf /w0 /zq /j /zp4 /fp5 /fpi87 /5r /otimra /s /IC:\Develop\Euphoria main-.c echo Linking 100%% hello wlink @hello.lnk if not exist hello.exe goto done echo You can now use hello.exe del /q init-.c del /q init-.obj del /q main-.h del /q hello.c del /q hello.obj del /q main-.c del /q main-.obj del /q hello.lnk :done
The output is looks like:
Compiling with Watcom Compiling 13% init-.c Compiling 50% hello.c Compiling 75% main-.c Linking 100% hello You can now use hello.exe
You should be able to just do:
C:\editor> euc editor.ex ... output ... C:\editor> editor.exe
However if that does not work, I need to see the output of the 2019 version of the emake.bat file to figure out what it thinks it should be compiling.
Jeremy