I am building a 4GL compiler/vm and the configuration script is reporting this:
I am passing this to configure:
I am passing -lm to gcc and libm.so exists:
So, what am I missing here?
Code:
checking for floor... no checking for pow... no checking for trunc... no
I am passing this to configure:
Code:
./configure --prefix=$HOME/usr/local \ > --exec-prefix=$HOME/usr/local \ > --with-build-cc=/usr/local/bin/gcc \ > --with-build-cflags=-lm \ > --with-build-libs="/lib /usr/lib /usr/local/lib" \ > --with-iodbc=/usr/local/lib \ > --with-java=/usr/local/openjdk11 \ > --with-pgsqleng=/var/db/postgres/data11
I am passing -lm to gcc and libm.so exists:
Code:
ls -l /usr/lib/libm.so lrwxr-xr-x 1 root wheel 19 Nov 1 2019 /usr/lib/libm.so -> ../../lib/libm.so.5
So, what am I missing here?