~/.bashrc
で または ~/.bash_profile
devtoolset で提供されている「enable」スクリプトを source するだけです。たとえば、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
scl_source
Red Hat 7.1 にインストール
#!/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 "[email protected]"; 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 に入れると、新しいシェルが作成され、scl enable devtoolset-1.1 bash
を実行する .bashrc がロードされます。 、新しいシェルを作成し、.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
- devtoolset-1.1 に gcc 4.7.2 が含まれていない場合、最初のコマンドは forkbomb を続行し、ネイティブ環境に gcc 4.7.2 がある場合も機能しません。
- これにより、上記のように新しいシェルが作成されます。したがって、ターミナル ウィンドウまたは ssh セッションを作成すると、2 つの bash セッションになり、
exit
する必要があります。