# ncurses **Repository Path**: hongbinj/ncurses ## Basic Information - **Project Name**: ncurses - **Description**: This repo is used to store source code of ncurses and some scripts for build the library. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: build - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-05-25 - **Last Updated**: 2023-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## How to build If `clang` and `clang++` is in your `PATH` env, invoke `./build.sh` directly. Otherwise, set `CC` and `CXX` env like: ``` CC=/path/to/clang CXX=/path/to/clang++ ./build.sh ``` Additional compiler and linker flags can be passed in, e.g. ``` CXXFLAGS="-stdlib=libc++" ./build.sh ```