본문 바로가기

HPC

pkg-config in NURION

Nurion에서 pkg-config를 제공하지만, 버전이 오래되어 문제가 되기도 한다.

 

user단에서 설치를 하면,

wget https://pkg-config.freedesktop.org/releases/pkg-config-0.29.2.tar.gz
tar -xzf pkg-config-0.29.2.tar.gz
cd pkg-config-0.29.2
./configure --prefix=$HOME/local --with-internal-glib
make -j
make install

 

패스를 잡아주고,

export PATH=$HOME/local/bin:$PATH

 

확인사살

$ which pkg-config
~/local/bin/pkg-config
$ pkg-config --version
0.29.2

'HPC' 카테고리의 다른 글

NUMA Pinning of AMD ThreadRipper 7995WX Pro  (0) 2025.04.24
Command line option for MPIRUN  (0) 2025.04.22
생각해 볼 것  (0) 2025.04.14
Ncurses  (0) 2025.04.14
디렉토리 관리 in NURION  (0) 2025.04.13