Re: ATTN: Translator Change in SVN 2015
- Posted by georgeorr May 01, 2009
- 799 views
Jeremy -
I am running the 64-bit version of Vista. The error says that le23p.exe cannot start or run due to incompatibility with 64-bit versions of Windows. I really don't need or use DOS programs anyway. In fact, I find euphoria a much better fit with Linux and am really only using the Vista versions to test out EU4.0. I guess that could change if I get into the GUI programming frameworks a little deeper.
On the EUINC note, I prefer to use EUINC and point at all the include directories since I can't always remember where each include file is located! Old age, I guess. My EUINC on Linux actually included the std and euphoria folders, so my earlier comment really should be ignored. I just forgot I had done this!
I think there was a problem with std\include versus std/include on Windows when I tried your suggestion, but I'm not sure I didn't do something else wrong. Using EUINC I use the same code on both boxes with no changes.
Thanks again!
George
Jeremy - I have tested this change (using SVN 2020) on both Linux and Windows Vista with no problems. I do still forget to use the winall option for wmake, so I get DOS errors. I'll learn eventually!
Hm, you should be able to build the dos stuff as well. What are the DOS errors?
One other thing I have noticed is that while declaring EUINC to be the \include directory on Linux seems to allow euphoria to find include files in the \include\std and \include\euphoria directories, I have to add these subdirectories to the EUINC environmental variable when I use Vista. Is this normal, or did I miss a configuration step somewhere?
Thanks. It's really hard keeping up with the development team! Great effort.
You should only have to set EUDIR, EUINC shouldn't need to be set if you don't do exotic things. Then when including things you do:
include std/sequence.e
Jeremy