From e5e3f6c2be47414d70769fa6ee9a861ee5f161b1 Mon Sep 17 00:00:00 2001 From: Vahagn Khachatryan Date: Tue, 9 Jul 2013 15:45:37 +0500 Subject: [PATCH] gcc 4.7.0 added to path when found. --- bash/bashrc.synopsys | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bash/bashrc.synopsys b/bash/bashrc.synopsys index 32a9129..fe3fbfe 100755 --- a/bash/bashrc.synopsys +++ b/bash/bashrc.synopsys @@ -128,6 +128,9 @@ alias p4v="/depot/perforce/p4v" if [ -e /depot/gcc-4.7.2/bin ]; then PATH=/depot/gcc-4.7.2/bin:$PATH LD_LIBRARY_PATH=/depot/gcc-4.7.2/lib64:$LD_LIBRARY_PATH +elif [ -e /depot/gcc-4.7.0/bin ]; then + PATH=/depot/gcc-4.7.0/bin:$PATH + LD_LIBRARY_PATH=/depot/gcc-4.7.0/lib64:$LD_LIBRARY_PATH elif [ -e /depot/gcc-4.5.2/bin ]; then PATH=/depot/gcc-4.5.2/bin:$PATH LD_LIBRARY_PATH=/depot/gcc-4.5.2/lib64:$LD_LIBRARY_PATH