본문 바로가기

HPC

Ncurses

ncurses 빌드를 위한 셋업

 

--enable-widec

이 옵션은 한글과 같은 문자를 표시하기 위함이니까 사용

 

./configure --prefix=$HOME/local \
--with-libtool \
--enable-widec \
--with-shared \
--without-normal \
--without-debug \
--with-pkg-config \
--with-pkg-config-libdir=$HOME/local/lib/pkgconfig \
--enable-overwrite

make -j
make install

 

 

 

 

 

ncurses library compile and install 후 환경변수 세팅

export CPPFLAGS="-I$HOME/local/include -I$HOME/local/include/ncursesw"
export LDFLAGS="-L$HOME/local/lib"
export PKG_CONFIG_PATH="$HOME/local/lib/pkgconfig:$PKG_CONFIG_PATH"
export PATH="$HOME/local/bin:$PATH"

'HPC' 카테고리의 다른 글

pkg-config in NURION  (0) 2025.04.15
생각해 볼 것  (0) 2025.04.14
디렉토리 관리 in NURION  (0) 2025.04.13
MC(Midnight Commaner) on NURION  (0) 2025.04.13
NURION사용시 필요한 라이브러리들  (0) 2025.04.10