From: stevenknight Date: Mon, 4 Aug 2003 12:20:50 +0000 (+0000) Subject: Initialize a LIB environment variable for the Intel compiler. (Gary Oberbrunner) X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=e7701efa826da2b1e8e8d9c38a0c91b18b02e4be;p=scons.git Initialize a LIB environment variable for the Intel compiler. (Gary Oberbrunner) git-svn-id: http://scons.tigris.org/svn/scons/trunk@760 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/CHANGES.txt b/src/CHANGES.txt index f10bb348..fd84cd5c 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -102,6 +102,9 @@ RELEASE 0.XX - XXX (also) print the command line that is being executed through the temporary file. + - Initialize the LIB environment variable when using the Intel + compiler (icl). + From Laurent Pelecq: - When the -debug=pdb option is specified, use pdb.Pdb().runcall() to diff --git a/src/engine/SCons/Tool/icl.py b/src/engine/SCons/Tool/icl.py index 1b653e38..666bcd16 100644 --- a/src/engine/SCons/Tool/icl.py +++ b/src/engine/SCons/Tool/icl.py @@ -69,6 +69,7 @@ def generate(env): if icltop: env.PrependENVPath('INCLUDE', os.path.join(icltop, 'Include')) + env.PrependENVPath('LIB', os.path.join(icltop, 'Lib')) env.PrependENVPath('PATH', os.path.join(icltop, 'Bin')) env['CC'] = 'icl'