Re: Version 4 question
- Posted by jimcbrown (admin) Nov 14, 2010
- 1429 views
Because you are including image.e in e:\euphoria\include
If you did that intentionally, then that is the cause of the problem - eui looks in the same folder that an include file is in to locate sibling include files.
dcole said...
Error I get running Version 4,
e:\euphoria\include\image.e:312 <0023>:: A namespace qualifier is needed to resolve 'DOS32' because 'DOS32' is declared as a global/public symbol in: e:\euphoria\include\misc.e e:\euphoria-40b4\include\misc.e
My question is why is 'e:\euphoria\include\misc.e' in there at all?
- e:\euphoria is my Version 3 folder.
- e:\euphoria-40b4 is my Version 4 folder.
I changed my enviromnmental with the following bat file.
@@PATH=%PATH% E:\euphoria-40b4\bin @SET EUDIR=E:\euphoria-40b4 @SET EUINC=E:\euphoria-40b4\include;e:\eu\win32lib @start /b E:\euphoria-40b4\bin\eui.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
Don Cole