1. PATH Variable not assigning correctly for 4.0
- Posted by Sypress Jun 01, 2009
- 804 views
Each time I try to run a ex/exw file, it says that the particular file (error.e, socket.e, etc) cannot be found. For some reason, it seems to be searching the non-existent euphoria31 include folder. Any ideas on how to diagnose/fix this?
Sypress
2. Re: PATH Variable not assigning correctly for 4.0
- Posted by DerekParnell (admin) Jun 01, 2009
- 746 views
Each time I try to run a ex/exw file, it says that the particular file (error.e, socket.e, etc) cannot be found. For some reason, it seems to be searching the non-existent euphoria31 include folder. Any ideas on how to diagnose/fix this?
Sypress
What is your EUDIR set to?
At the prompt type in ...
echo %EUDIR%
This will show you its current setting.
3. Re: PATH Variable not assigning correctly for 4.0
- Posted by jeremy (admin) Jun 01, 2009
- 805 views
EUDIR should be set to your Euphoria installation directory (on many computers: C:\Euphoria). %EUDIR%\include will automatically then be placed into your Euphoria include path. Now, for things like socket.e, you need to give it the sub-path of %EUDIR%\include. For instance:
include std/socket.e include std/regex.e -- etc...
Jeremy
4. Re: PATH Variable not assigning correctly for 4.0
- Posted by Sypress Jun 01, 2009
- 774 views
It seems to be working fine now. Thanks for the help with the PATH variables jeremy.