You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When doing 'make' it displays this warning and exit
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /usr/local/src/ZXCC/config/missing --run aclocal-1.11 -I m4
/usr/local/src/ZXCC/config/missing: ligne 81: aclocal-1.11 : commande introuvable
WARNING: 'aclocal-1.11' is missing on your system.
You should only need it if you modified 'acinclude.m4' or
'configure.ac' or m4 files included by 'configure.ac'.
The 'aclocal' program is part of the GNU Automake package: https://www.gnu.org/software/automake
It also requires GNU Autoconf, GNU m4 and Perl in order to run: https://www.gnu.org/software/autoconf https://www.gnu.org/software/m4/ https://www.perl.org/
make: *** [Makefile:322 : aclocal.m4] Erreur 127
My version of ACLOCAL is 1.16
The text was updated successfully, but these errors were encountered:
My clairvoyant powers are lacking with respect to the specific environment you're trying to build ZXCC on.
Can you provide some details on the environment you're using? I'm assuming some flavour of Linux.
This looks like the autotools scripts need to be rebuilt (like it had to be to support Debian Bookworm a few months ago).
You can do this by re-cloning the repository, running ./configure and edit the Makefiles prior to doing a make.
cd ~/src
git clone https://github.com/agn453/ZXCC
cd ZXCC
./configure --prefix=$HOME
Next, edit the generated Makefilecpmio/Makefile and cpmredir/Makefile files changing both the aclocal-1.11 and automake-1.11 argument references for the missing script to just aclocal and automake respectively.
Now when you do a make, it will detect the versions of autoconf tools you have installed and update the scripts -
make
make install
I will need to do a bit of testing before I push the updated autotools scripts to the repository (to make sure it doesn't break older versions). This should get you going in the meantime.
When doing 'make' it displays this warning and exit
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /usr/local/src/ZXCC/config/missing --run aclocal-1.11 -I m4
/usr/local/src/ZXCC/config/missing: ligne 81: aclocal-1.11 : commande introuvable
WARNING: 'aclocal-1.11' is missing on your system.
You should only need it if you modified 'acinclude.m4' or
'configure.ac' or m4 files included by 'configure.ac'.
The 'aclocal' program is part of the GNU Automake package:
https://www.gnu.org/software/automake
It also requires GNU Autoconf, GNU m4 and Perl in order to run:
https://www.gnu.org/software/autoconf
https://www.gnu.org/software/m4/
https://www.perl.org/
make: *** [Makefile:322 : aclocal.m4] Erreur 127
My version of ACLOCAL is 1.16
The text was updated successfully, but these errors were encountered: