Hi. I'm trying to install ECL 16.1.2 from source in Linux Fedora. I follow the steps indicated in https://common-lisp.net/project/ecl/manual/pr01s06.html :
gunzip -c ecl-16.1.2.tgz | tar xf -
$ cd ecl-16.1.2 $ ./configure --prefix=/usr/local
$ make
But the following error is generated:
cd /home/Descargas/ecl-16.1.2/src/../.git && ctags -o tags -R --langmap=c:+.d ../src || true /bin/sh: línea 0: cd: /home/Descargas/ecl-16.1.2/src/../.git: No existe el fichero o el directorio if test "xetags" != "x"; then \ srcfiles=`find /home/Descargas/ecl-16.1.2/src/c /home/Descargas/ecl-16.1.2/src/h -name '*.[chd]'` && \ etags --language=c -o TAGS $srcfiles && \ etags --language=none -o TAGS --append \ --regex='/@([-:*a-zA-z]+)/\1/' \ --regex='/@(defun ([-:*a-zA-z]+)/\1/' \ $srcfiles; \ fi touch TAGS
Note: No existe el fichero o el directorio = The file or directory doesn't exist.
Can anybody help me?
Enrique Gabriel Baquela http://www.egbaquela.com.ar http://www.modelizandosistemas.com.ar http://www.gisoiweb.com.ar http://ar.linkedin.com/in/egbaquela Skype ID: egbaquela
On Fri, Apr 15, 2016 at 8:38 AM, Enrique Gabriel Baquela egbaquela@gmail.com wrote:
Hi. I'm trying to install ECL 16.1.2 from source in Linux Fedora. I follow the steps indicated in https://common-lisp.net/project/ecl/manual/pr01s06.html :
What's wrong with the version of ecl that is already packaged in Fedora? Run 'sudo dnf install ecl' to get it.
Version 16.1.2 has already been built for the upcoming Fedora 24, by the way. See http://bugz.fedoraproject.org/ecl/ for more information on the package.
Hey,
could you set your system locale to english?
Also before rebuilding ECL please issue:
make distclean
Failure with creating tags shouldn't affect the build. Check, if the make install
works OK for you. It may be that ECL built fine.
If you are building for a normal usage, use your distribution packages, build from source is a nice thing for developing ECL itself.
Best regards, Daniel
Enrique Gabriel Baquela writes:
Hi. I'm trying to install ECL 16.1.2 from source in Linux Fedora. I follow the steps indicated in https://common-lisp.net/project/ecl/manual/pr01s06.html :
gunzip -c ecl-16.1.2.tgz | tar xf -
$ cd ecl-16.1.2 $ ./configure --prefix=/usr/local
$ make
But the following error is generated:
cd /home/Descargas/ecl-16.1.2/src/../.git && ctags -o tags -R --langmap=c:+.d ../src || true /bin/sh: línea 0: cd: /home/Descargas/ecl-16.1.2/src/../.git: No existe el fichero o el directorio if test "xetags" != "x"; then \ srcfiles=`find /home/Descargas/ecl-16.1.2/src/c /home/Descargas/ecl-16.1.2/src/h -name '*.[chd]'` && \ etags --language=c -o TAGS $srcfiles && \ etags --language=none -o TAGS --append \ --regex='/@([-:*a-zA-z]+)/\1/' \ --regex='/@(defun ([-:*a-zA-z]+)/\1/' \ $srcfiles; \ fi touch TAGS
Note: No existe el fichero o el directorio = The file or directory doesn't exist.
Can anybody help me?
Enrique Gabriel Baquela http://www.egbaquela.com.ar http://www.modelizandosistemas.com.ar http://www.gisoiweb.com.ar http://ar.linkedin.com/in/egbaquela Skype ID: egbaquela