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
All the dependancies are installed properly. See the below output (I've truncated the output from the parts that work fine):
$ git clone [email protected]:CobbCoding1/Cano.git
$ cd Cano
$ chmod +x autogen.sh
$ ./autogen.sh+ autoreconf -viautoreconf: export WARNINGS=autoreconf: Entering directory '.'autoreconf: configure.ac: not using Gettextautoreconf: running: aclocal autoreconf: configure.ac: tracingautoreconf: configure.ac: not using Libtoolautoreconf: configure.ac: not using Intltoolautoreconf: configure.ac: not using Gtkdocautoreconf: running: /usr/bin/autoconfautoreconf: configure.ac: not using Autoheaderautoreconf: running: automake --add-missing --copy --no-forceconfigure.ac:2: warning: unknown warning category 'extra'configure.ac:4: installing './compile'configure.ac:15: installing './config.guess'configure.ac:15: installing './config.sub'configure.ac:2: installing './install-sh'configure.ac:2: installing './missing'Makefile.am: installing './depcomp'autoreconf: Leaving directory '.'+ mkdir -p build+ cd build+ ../configurechecking for a BSD-compatible install... /usr/bin/install -cchecking whether build environment is sane... yeschecking for a race-free mkdir -p... /usr/bin/mkdir -pchecking for gawk... gawkchecking whether make sets $(MAKE)... yeschecking whether make supports nested variables... yesconfigure: error: source directory already configured; run "make distclean" there first
Calling configure by itself works fine by itself, but then running cano throws this:
$ ./cano./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)Could not open file
$ ldd cano./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano)./cano: /lib64/libncursesw.so.6: no version information available (required by ./cano) linux-vdso.so.1 (0x00007f1233751000) libncursesw.so.6 => /lib64/libncursesw.so.6 (0x00007f12336e6000) libm.so.6 => /lib64/libm.so.6 (0x00007f1233602000) libc.so.6 => /lib64/libc.so.6 (0x00007f1233411000) libtinfo.so.6 => /lib64/libtinfo.so.6 (0x00007f12333e4000) /lib64/ld-linux-x86-64.so.2 (0x00007f1233753000)
$ ls /lib64/ | grep "ncurses"libncurses++.solibncurses.solibncurses++.so.6libncurses.so.6libncurses++.so.6.4libncurses.so.6.4libncurses++w.solibncursesw.solibncurses++w.so.6libncursesw.so.6libncurses++w.so.6.4libncursesw.so.6.4
Not sure what else it's looking for here - also might be worth updating the build commands as I think it's trying to call configure in the parent directory to the project root.
The text was updated successfully, but these errors were encountered:
All the dependancies are installed properly. See the below output (I've truncated the output from the parts that work fine):
Calling configure by itself works fine by itself, but then running cano throws this:
Not sure what else it's looking for here - also might be worth updating the build commands as I think it's trying to call
configure
in the parent directory to the project root.The text was updated successfully, but these errors were encountered: