使用configure编译安装
autoreconf -i # skip if using released tarball
./configure
make
make install
编译报错缺少ncurses的头文件,使用gcc命令混合编译
gcc -g -O2 -o cmatrix cmatrix.o -lncursesw -lncurses
使用configure编译安装
autoreconf -i # skip if using released tarball
./configure
make
make install
编译报错缺少ncurses的头文件,使用gcc命令混合编译
gcc -g -O2 -o cmatrix cmatrix.o -lncursesw -lncurses
评论 (0)