We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. I can`t build ne under Ubuntu 14.04x64.
STR:
git clone git@github.com:vigna/ne.git
cd ne
make install
Actual result: mkdir -p /usr/local/bin mkdir -p /usr/local/share/ne/syntax mkdir -p /usr/local/share/ne/macros mkdir -p /usr/local/share/man/man1 mkdir -p /usr/local/share/doc/ne mkdir -p /usr/local/share/info cp -pf src/ne /usr/local/bin cp: cannot stat ‘src/ne’: No such file or directory make: *** [install] Error 1
mkdir -p /usr/local/bin
mkdir -p /usr/local/share/ne/syntax
mkdir -p /usr/local/share/ne/macros
mkdir -p /usr/local/share/man/man1
mkdir -p /usr/local/share/doc/ne
mkdir -p /usr/local/share/info
cp -pf src/ne /usr/local/bin
cp: cannot stat ‘src/ne’: No such file or directory
make: *** [install] Error 1
Expected result: Successfully build ne.
Additional info: make output: make ( cd src; make clean; make NE_GLOBAL_DIR=/usr/local/share/ne; strip ne ) make[1]: Entering directory /home/user/distr/ne/src' rm -f ne *.o *.gcda *.gcda.info *.gcno core make[1]: Leaving directory/home/user/distr/ne/src' make[1]: Entering directory /home/user/distr/ne/src' c99 -D_REGEX_LARGE_OFFSETS -D_GNU_SOURCE -DSTDC_HEADERS -Dinline=__inline__ -O3 -DNDEBUG -c -o actions.o actions.c In file included from actions.c:22:0: ne.h:44:20: fatal error: curses.h: No such file or directory #include <curses.h> ^ compilation terminated. make[1]: *** [actions.o] Error 1 make[1]: Leaving directory/home/user/distr/ne/src' strip: 'ne': No such file make: *** [build] Error 1
make
/home/user/distr/ne/src' rm -f ne *.o *.gcda *.gcda.info *.gcno core make[1]: Leaving directory
/home/user/distr/ne/src' c99 -D_REGEX_LARGE_OFFSETS -D_GNU_SOURCE -DSTDC_HEADERS -Dinline=__inline__ -O3 -DNDEBUG -c -o actions.o actions.c In file included from actions.c:22:0: ne.h:44:20: fatal error: curses.h: No such file or directory #include <curses.h> ^ compilation terminated. make[1]: *** [actions.o] Error 1 make[1]: Leaving directory
The text was updated successfully, but these errors were encountered:
It seems like you're missing curses.h on your system. First try: apt install libncursesw5-dev
Sorry, something went wrong.
No branches or pull requests
Hello.
I can`t build ne under Ubuntu 14.04x64.
STR:
git clone git@github.com:vigna/ne.git
cd ne
make install
Actual result:
mkdir -p /usr/local/bin
mkdir -p /usr/local/share/ne/syntax
mkdir -p /usr/local/share/ne/macros
mkdir -p /usr/local/share/man/man1
mkdir -p /usr/local/share/doc/ne
mkdir -p /usr/local/share/info
cp -pf src/ne /usr/local/bin
cp: cannot stat ‘src/ne’: No such file or directory
make: *** [install] Error 1
Expected result:
Successfully build ne.
Additional info:
make
output:make
( cd src; make clean; make NE_GLOBAL_DIR=/usr/local/share/ne; strip ne )
make[1]: Entering directory
/home/user/distr/ne/src' rm -f ne *.o *.gcda *.gcda.info *.gcno core make[1]: Leaving directory
/home/user/distr/ne/src'make[1]: Entering directory
/home/user/distr/ne/src' c99 -D_REGEX_LARGE_OFFSETS -D_GNU_SOURCE -DSTDC_HEADERS -Dinline=__inline__ -O3 -DNDEBUG -c -o actions.o actions.c In file included from actions.c:22:0: ne.h:44:20: fatal error: curses.h: No such file or directory #include <curses.h> ^ compilation terminated. make[1]: *** [actions.o] Error 1 make[1]: Leaving directory
/home/user/distr/ne/src'strip: 'ne': No such file
make: *** [build] Error 1
The text was updated successfully, but these errors were encountered: