functions.c: In function ‘f_random’:
functions.c:132:9: error: unknown type name ‘gmp_randstate_t’
extern gmp_randstate_t state;
also at:
kommandos.c:392:1: error: unknown type name ‘gmp_randstate_t’
gmp_randstate_t state;
^
another point is that it tries to link against libx11basic.so.1.23 which is not known to the linker at this point. Workaround by setting LD_LIBRARY_PATH to the build directory
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2014-10-16
it works after apt-get install m4,
then wget https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2
untar, configure , make, make install (gmp)
then back to x11basic
untar, configure , make
before make install you have to
mkdir -p /usr/local/share/icons/hicolor/32x32/apps/
make install
so far it worked
checks are ongoing
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I tried to compile V1.23 on a bananapi (armv7l):
Main error seems to be:
functions.c: In function ‘f_random’:
functions.c:132:9: error: unknown type name ‘gmp_randstate_t’
extern gmp_randstate_t state;
also at:
kommandos.c:392:1: error: unknown type name ‘gmp_randstate_t’
gmp_randstate_t state;
^
another point is that it tries to link against libx11basic.so.1.23 which is not known to the linker at this point. Workaround by setting LD_LIBRARY_PATH to the build directory
it works after apt-get install m4,
then wget https://gmplib.org/download/gmp/gmp-6.0.0a.tar.bz2
untar, configure , make, make install (gmp)
then back to x11basic
untar, configure , make
before make install you have to
mkdir -p /usr/local/share/icons/hicolor/32x32/apps/
make install
so far it worked
checks are ongoing