1. Can someone help confirm a bug?
- Posted by jeremy (admin) Aug 25, 2009
- 869 views
If you are using a SVN version of Euphoria, preferably the latest (r2583), can you please issue these commands and report back if it worked or if it didn't? Either way, report the output of eui -version and the status:
On windows:
C:\euphoria_svn> cd demo\preproc C:\euphoria_svn\demo\preproc> eui -version C:\euphoria_svn\demo\preproc> eui etml.ex -i hello.etml -o hello.pp.etml
On unices:
$ cd euphoria_svn/demo/preproc $ eui -version $ eui etml.ex -i hello.etml -o hello.pp.etml
Thanks for the help!
Jeremy
2. Re: Can someone help confirm a bug?
- Posted by RStowasser Aug 25, 2009
- 827 views
These are my results using Windows Vista:
C:\EUPHORIA\demo\preproc>eui -version Euphoria Interpreter 4.0.0 development (r2583) for Windows Using System Memory, EuConsole C:\EUPHORIA\demo\preproc>eui etml.ex -i hello.etml -o hello.pp.etml C:\EUPHORIA\include\std\eumem.e:95 in procedure free() A machine-level exception occurred during execution of this stateme ^^^ call-back from Windows ... called from etml.ex:62 The instruction at 0x004c898a referenced memory at 0x00000004. The memory could not be read. Exception fielded by 0x004dd9d0 EAX=0x02b9028c EBX=0x80573fda ECX=0x00000000 EDX=0x00000008 ESI=0x02b9fed0 EDI=0x00000000 EBP=0x80000000 ESP=0x0006eba0 EIP=0x004c898a EFL=0x00010287 CS =0x0000001b SS =0x00000023 DS =0x00000023 ES =0x00000023 FS =0x0000003b GS =0x00000000 Stack dump (SS:ESP) 0x0006ebe8 0x38303000 0x00000000 0x00000000 0x00502e6a 0x004e039c 0x00502e6a 0x037d2d7b 0x00502e6a 0x037d2d88 0x009bb678 0x80573fda 0x00000000 0x000001f4 0x004c8ac2 0x004c3552 0x00000012 0x00000001 0x0000000b 0x0006ec18 0x00000000 0x00000001 0x00000064 0x00000001 0x02199f58 0x004c3a94 0x01f4d400 0x00000000 0x00000000 0x00000000 0x004f06a2 0x01f4d400 0x01f4d400 0x004f06e7 0x0006ec54 0x004c3b36 0x00000000 0x01f4d400 0x0006eca0 0x00000000 0x0006ed84 0x00000005 0x004c4693 0x004c16f0 0x004c46b5 0x0006ec5c 0x004f06a2 0x004da1af 0xc0000005 0x00000005 0x0006ed68 0x004de02e 0x0006ff74 0x778f99fa 0x00000000 0x00000000 0x77955f79 0x0006ed68 0x0006ff74 0x0006ed84 0x0006ed3c 0x0006ff74 0x77955f8d 0x0006ff74 0x0006ed50 0x77955f4b 0x0006ed68 0x0006ff74 0x0006ed84 0x0006ed3c 0x004dde60 0x00000000
The binaries were build using OpenWatcom and the provided makefile.wat.
Roland
C:\EUPHORIA\demo\preproc>
3. Re: Can someone help confirm a bug?
- Posted by DerekParnell (admin) Aug 25, 2009
- 845 views
Results for Windows XP SP3
C:\Projects\eu_proj\eu40\trunk\demo\preproc>eui -version Euphoria Interpreter 4.0.0 development (r2584) for Windows Using System Memory C:\Projects\eu_proj\eu40\trunk\demo\preproc>eui etml.ex -i hello.etml -o hello.pp.etml C:\Projects\eu_proj\eu40\trunk\demo\preproc>type hello.pp.etml include std/text.e include std/map.e as m public function template(m:map data) sequence result = "" result &= """ <html> <head><title>Hello, """ result &= m:get(data, "name") result &= """</title></head> <body> <h1>Say Hello</h1> """ for i = 1 to 10 do result &= """ <p>Hello, """ result &= m:get(data, "name") result &= """!</p> """ end for result &= """ </body> </html> """ return result end function C:\Projects\eu_proj\eu40\trunk\demo\preproc>
4. Re: Can someone help confirm a bug?
- Posted by jeremy (admin) Aug 25, 2009
- 817 views
OK, on Matt's XP, it works fine, on my Windows 7 it fails. So, We have 2 XP's that work, Windows Vista and Windows 7 that fails
Jeremy