Re: Euphoria + Database
- Posted by jeremy (admin) Nov 01, 2010
- 1807 views
Anthill said...
I downloaded Euphoria Debian package from this web site a few days ago (2010-08-26):
http://openeuphoria.org/downloads/index.wc
Linux (x86) Debian package euphoria_4.0.beta.4-1ubuntu1_i386.deb
Ok, this seems to be a problem with the makefile. It's assuming eu.a is in your $EUDIR/bin directory (windows location and where it is on my development box).
Line 19 of GNUmakefile reads:
$(EUDIR)/bin/eu.a
Replace that with:
/usr/lib/eu.a
and things should work. Be careful as the GNUmakefile needs indented with a tab. It does not like spaces.
Let me know how this works for you. I'll have to come up with some other way of determining where the eu.a file is installed at.
Jeremy