新しいバージョンのdevtoolset(1.1)をインストールしましたが、これらをデフォルトに永久的に設定するにはどうしたらよいのか疑問に思いました。現在、CentOSを実行しているサーバーにSSHで接続するとき、このコマンドを実行する必要がありますscl enable devtoolset-1.1 bash
私はそれを〜/ .bashrcに追加して、最後の行に単に貼り付けてみましたが、成功しませんでした。
あなたの~/.bashrc
または~/.bash_profile
単にdevtoolsetで提供される「有効」スクリプトを入手します。たとえば、Devtoolset 2の場合、コマンドは次のとおりです。
source /opt/rh/devtoolset-2/enable
または
source scl_source enable devtoolset-2
より効率的:フォークボムやトリッキーなシェルは不要
source /opt/rh/devtoolset-4/enable
の代替は
source scl_source enable devtoolset-4
上記のシェルスクリプトscl_source
は、ハードコードされたパスを使用するよりもエレガントです(別のマシンでは異なる場合があります)。ただし、scl_source
は/opt/rh/devtoolset-4/enable
やその他のものを使用するため、scl_source
の方が効率が良くありません。
scl_source
を使用するには、パッケージscl-utils
をアップグレードする必要があるかもしれません
yum update scl-utils # old scl-utils versions miss scl_source
簡単なコピー貼り付け
echo 'source scl_source enable devtoolset-4' >> ~/.bashrc
# Do not forget to change the version ↑
好奇心が強い人々のためのソースコード
scl_source
ソースコードの例:
https://Gist.github.com/bkabrda/6435016
Red Hat 7.1にインストールされているscl_source
#!/bin/bash
_scl_source_help="Usage: source scl_source <action> [<collection> ...]
Don't use this script outside of SCL scriptlets!
Options:
-h, --help display this help and exit"
if [ $# -eq 0 -o $1 = "-h" -o $1 = "--help" ]; then
echo "$_scl_source_help"
return 0
fi
if [ -z "$_recursion" ]; then
_recursion="false"
fi
if [ -z "$_scl_scriptlet_name" ]; then
# The only allowed action in the case of recursion is the same
# as was the original
_scl_scriptlet_name=$1
fi
shift 1
if [ -z "$_scl_dir" ]; then
# No need to re-define the directory twice
_scl_dir=/etc/scl/conf
if [ ! -e $_scl_dir ]; then
_scl_dir=/etc/scl/prefixes
fi
fi
for arg in "$@"; do
_scl_prefix_file=$_scl_dir/$arg
_scl_prefix=`cat $_scl_prefix_file 2> /dev/null`
if [ $? -ne 0 ]; then
echo "Can't read $_scl_prefix_file, $arg is probably not installed."
return 1
fi
# First check if the collection is already in the list
# of collections to be enabled
for scl in ${_scls[@]}; do
if [ $arg == $scl ]; then
continue 2
fi
done
# Now check if the collection isn't already enabled
/usr/bin/scl_enabled $arg > /dev/null 2> /dev/null
if [ $? -ne 0 ]; then
_scls+=($arg)
_scl_prefixes+=($_scl_prefix)
fi;
done
if [ $_recursion == "false" ]; then
_i=0
_recursion="true"
while [ $_i -lt ${#_scls[@]} ]; do
_scl_scriptlet_path="${_scl_prefixes[$_i]}/${_scls[$_i]}/${_scl_scriptlet_name}"
source "$_scl_scriptlet_path"
if [ $? -ne 0 ]; then
echo "Can't source $_scl_scriptlet_name, skipping."
else
export X_SCLS="${_scls[$_i]} $X_SCLS"
fi;
_i=$(($_i+1))
done
_scls=()
_scl_prefixes=()
_scl_scriptlet_name=""
_recursion="false"
fi
問題は、scl enable devtoolset-1.1 bash
が新しいbashシェルを作成することです。したがって、それを.bashrcに入れると、新しいシェルが作成されます。これにより、.bashrcが読み込まれ、scl enable devtoolset-1.1 bash
が実行され、新しいシェルが作成され、.bashrcが読み込まれます... Forkbomb!
あなたはおそらくあなたの.bashrcにこのようなものを望みます:
if [ "$(gcc -dumpversion)" != "4.7.2" ]; then
scl enable devtoolset-1.1 bash
fi
または
if [ -z "$TRIEDSCLDEVTOOLSET" ]; then
export TRIEDSCLDEVTOOLSET=true
scl enable devtoolset-1.1 bash
fi
exit
を2回実行する必要があります。他の回答で言及されているスクリプトを見つける別の方法は、パッケージマネージャーにスクリプトの場所を通知させることです。
これは、RHEL/CentOSのvagrantマシンにdotnetツールを取り込むために実行するものです。
source $(rpm -ql rh-dotnet20-runtime|grep -E /enable$)