Re: path trouble on 40a3
- Posted by Kat Mar 17, 2009
- 1076 views
I do want to point out that adding %EUDIR%\include and %EUDIR%\include\std is the wrong practice. It will lead to all sorts of unexpected results. There are files w/the same name in %EUDIR%\incude and %EUDIR%\include\std. The entire 3.1.1 includes are included in %EUDIR%\include so that 3.1 programs can change almost unchanged. The new standard library is in %EUDIR%\include\std and that should not be in your EUINC environment variable. Instead, you should do this in your code:
include std/map.e include std/get.e include std/io.e --- etc
Jeremy
Well, i don't know about that, you can still use
include std\get.e
without removing %CD%\include\std\ from the EUINC var, as %CD%\include\ is still there. "std\get.e" won't be found in "%CD%\include\std\" but will be found in "%CD%\include\". But sure, edit the .bat to your heart's contentment. It's there to set up separate env vars for separate instances of the install. If you don't like it, don't use it. If it's the wrong color, then paint, dye, anodize, etc. it.
useless