Wee-0.22 Linux
- Posted by K_D_R Mar 30, 2015
- 1605 views
Very strange behaviour:
1. eui wee.exw crashes with message "bus error (core dumped)"
2. Bind compiles wee.exw to an executable file which crashes with the same error message
3. Translate compiles files with no error report, creates and executable fille wee which crashes with the same error message.
4. Shroud works perfectly, creating an executable file wee.il almost instantly executing ./wee.il wee.exw in a terminal window loads the wee.exw file instantly!
I wonder if creating another menu option "Shroud/test" would be beneficial, especially while the fixes for the other run options are being debugged. After the file is shrouded, eub could be called to execute the filebase.
Even in pre-1.0 release, and the problems with eui, bind, and translate, WEE is the best euphoria editor source code editor to date.
Thanks again, Pete!
UPDATE simple kludge to automatically test-run a file immediately after shrouding. (Seems like you'd want to do test your shrouded file immediately anyway)
-- in file ui_gtk.e ----------------------------------------- -- change: elsif equal(lbl, "Shroud") then system("eushroud " & file_name) -- to: elsif equal(lbl, "Shroud/Test") then system("eushroud " & file_name) system("eub " & filebase(file_name)) --------------------------------------------- -- change: createmenuitem("Shroud", "RunConvert"), -- to: createmenuitem("Shroud/Test", "RunConvert"), ---------------------------------------------
Regards, Ken