Re: FreeBSD & OE: unable to build from source code
- Posted by mattlewis (admin) Aug 29, 2012
- 1834 views
Raul said...
gmake complains about something related with a command called "hg". It fails to compile under freebsd.
hg is the name of the Mercurial executable, but that isn't the problem here (it's used to auto-generate the version / changeset information, but isn't required). The problem is that it needs to have the translated front end source in order to build:
gmake[1]: *** There is no rule to build the object `/home/luisraul/euphoria-4.0.4/source/build/intobj/main-.c', necesario para `/home/luisraul/euphoria-4.0.4/source/build/intobj/back/coverage.h'. Alto.
If you were already using a pre-translated version, then possibly some file was updated, which causes gmake to want to update it based on dependencies. The simplest solution is probably to touch all of the files in the build directory (/home/luisraul/euphoria-4.0.4/source/build/intobj):
$ touch /home/luisraul/euphoria-4.0.4/source/build/intobj/*.c /home/luisraul/euphoria-4.0.4/source/build/intobj/*.h
Matt