平衡点


2010/06/11

_ PGI Compiler の install

Debian unstable の計算機に PGI のコンパイラを入れた時のメモ(( 多分 Ubuntu 10.04 とかでもそうなんじゃないかな, とか思ったり )).

マニュアル通りの install で基本的には良いのだけれども,makelocalrc で glibc のバージョンをチェックする所に修正が必要.

配布されている makelocalrc の get_glibc_version() では

if test $? -ne 0; then
   x=`strings $LIBC | grep 'GNU C Library' | cut -d, -f1 | awk '{print $7}'`
else
   x=`strings $LIBC | grep 'GNU C Library' | cut -d, -f1 | awk '{print $8}'`
fi

となっているのだけれど, そのままだと

% strings /lib64/libc.so.6 | grep 'GNU C Library' | cut -d, -f1
GNU C Library (Debian EGLIBC 2.11.1-3) stable release version 2.11.1

となる. なので

if test $? -ne 0; then
   x=`strings $LIBC | grep 'GNU C Library' | cut -d, -f1 | awk '{print $NF}'`
else
   x=`strings $LIBC | grep 'GNU C Library' | cut -d, -f1 | awk '{print $NF}'`
fi

と修正して

% sudo makelocalrc -x /opt/pgi/linux86-64/10.5 

とすると良い.

ついでに環境変数の設定. .zshenv or .zshrc あたりに

if [ -d /opt/pgi/linux86-64 ]; then
    export PGI=/opt/pgi
    export PATH=${PGI}/linux86-64/2010/bin:${PATH}
    export MANPATH=${MANPATH}:${PGI}/linux86-64/2010/man
    export LM_LICENSE_FILE=${PGI}/license.dat
    MY_MPICH_PGI=${PGI}/linux86-64/2010/mpi/mpich/bin
    load_PGI_MPICH(){
        export PATH=${MY_MPICH_PGI}:${PATH}
    }
    unload_PGI_MPICH(){
        export PATH=${PATH#${MY_MPICH_PGI}:}
    }
fi

とでも書いておくことにする.MY_MPICH_PGI なんかは PGI に同梱されている mpich の load/unload 用.


連絡先など
最近の日記
  • 2024/10/09
    • 1. Mastodon でのメール通知, というか Exim4 と Apparmor
  • 2024/06/19
    • 1. WSL2 での gpg-agent, ssh-agent
  • 2024/06/18
    • 1. WSL で Windows 側のフォントを利用する
  • 2024/06/17
    • 1. WSLとWindowsの時刻同期
  • 2024/06/12
    • 1. wsl2 で systemd
    • 2. wslg の設定
一覧
2006|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|09|10|11|12|
2012|02|03|04|08|09|10|11|12|
2013|01|02|03|04|05|06|08|09|10|11|12|
2014|01|02|04|05|06|07|08|09|10|11|12|
2015|01|02|03|04|05|06|07|09|10|
2016|02|03|
2017|01|02|03|05|06|07|09|11|12|
2018|03|06|07|10|11|12|
2019|01|02|03|04|05|07|10|12|
2020|01|02|03|04|05|08|09|10|11|12|
2021|01|02|03|05|06|07|08|09|11|12|
2022|01|02|03|04|05|06|08|10|11|12|
2023|02|03|04|06|08|09|11|12|
2024|01|02|03|04|05|06|10|
Back to Top ▲