Re: problem installing in Linux Mint
- Posted by jimcbrown (admin) Feb 01, 2011
- 2378 views
Insolor said...
silvercoon said...
/home/david/Euphoria/Astro/astro.ex:376 <0052>:: can't find 'demos\basdemos.e' in any of ... /home/david/Euphoria/Astro /home/david/Euphoria/Astro/astro.ex /usr/share/euphoria/include /usr/share/euphoria include demos\basdemos.e as bas ^
astro.ex is DOS program (athough it wrote under WinXP). Probably include problem there is because of '\' character. Try to replace:
include demos\basdemos.e as bas
with
include demos/basdemos.e as bas
Even though if would help, note that astro.ex is DOS programme and uses dos-specific routines (eg. pixel-graphics ones), so it will not run under Linux.
Although eu_engin.e will assist with some of that (such as pixel-graphics) but not others (such as directly use of dos_interrupt() or machine code call()s that access hardware directly).
http://www.RapidEuphoria.com/eu_engin.zip by Bernie Ryan.