Re: Experimental builds for Euphoria 4.2
- Posted by jmduro Feb 05, 2024
- 1825 views
After comparing window.exw which runs and winwire.exw and taskwire.exw which don't run, I found that the bug is here:
allocate_string("Euphoria Multitasking Demo",1),
PS C:\WinApps\euphoria\demo\win32> ..\..\bin\eui .\winwire.exw C:\WinApps\euphoria\include\std\machine.e:2354 in procedure free() A machine-level exception occurred during execution of this statement (signal 11)
If you remove the option to free memory, the demos work:
allocate_string("Euphoria Multitasking Demo"),
Jean-Marc