ldflags() { $cc -print-file-name=libncursesw.so | grep -q / if [ $? -eq 0 ]; then echo '-lncursesw' exit fi $cc -print-file-name=libncurses.so | grep -q / # if [ $? -eq 0 ]; then echo '-lncurses' exit # fi $cc -print-file-name=libcurses.so | grep -q / if [ $? -eq 0 ]; then echo '-lcurses' exit fi exit 1 }
Is there a default .config I can modify for my needs?