Nel tuo ~/.bashrc
o ~/.bash_profile
Basta procurarsi lo script "enable" fornito con il devtoolset. Ad esempio, con Devtoolset 2, il comando è:
source /opt/rh/devtoolset-2/enable
o
source scl_source enable devtoolset-2
Molto più efficiente:niente forkbomb, niente shell ingannevole
Un'alternativa a source /opt/rh/devtoolset-4/enable
è
source scl_source enable devtoolset-4
Lo script di shell sopra scl_source
è più elegante rispetto all'utilizzo di un percorso codificato (potrebbe essere diverso su un'altra macchina). Comunque scl_source
fa di meno perché /opt/rh/devtoolset-4/enable
utilizza scl_source
e altre cose.
Per utilizzare scl_source
potrebbe essere necessario aggiornare il pacchetto scl-utils
yum update scl-utils # old scl-utils versions miss scl_source
Veloce copia-incolla
echo 'source scl_source enable devtoolset-4' >> ~/.bashrc
# Do not forget to change the version ↑
Codice sorgente per persone curiose
Un esempio di scl_source
codice sorgente:
https://gist.github.com/bkabrda/6435016
Il scl_source
installato sulla mia 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
Il problema è che scl enable devtoolset-1.1 bash
crea una nuova shell bash. Quindi, quando lo metti nel tuo .bashrc, crea una nuova shell... che carica il tuo .bashrc, che esegue scl enable devtoolset-1.1 bash
, che crea una nuova shell, che carica il tuo .bashrc... Forkbomb!
Probabilmente vuoi qualcosa di simile nel tuo .bashrc:
if [ "$(gcc -dumpversion)" != "4.7.2" ]; then
scl enable devtoolset-1.1 bash
fi
o
if [ -z "$TRIEDSCLDEVTOOLSET" ]; then
export TRIEDSCLDEVTOOLSET=true
scl enable devtoolset-1.1 bash
fi
- il primo continuerà a fare forkbomb se devtoolset-1.1 non contiene gcc 4.7.2 e non funzionerà nemmeno se il tuo ambiente nativo ha gcc 4.7.2.
- questo crea una nuova shell, come sopra. Quindi, quando crei la tua finestra di terminale o sessione ssh, ti troverai in due sessioni bash e dovrai
exit
due volte.