Initialize a LIB environment variable for the Intel compiler. (Gary Oberbrunner)
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 4 Aug 2003 12:20:50 +0000 (12:20 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 4 Aug 2003 12:20:50 +0000 (12:20 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@760 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/CHANGES.txt
src/engine/SCons/Tool/icl.py

index f10bb348609f28e66f07c287c1524ec430282ee3..fd84cd5ccc761058bc0e85654b826314be5ade82 100644 (file)
@@ -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
index 1b653e389f9287b36594ebf68a4d5e8fe44d905b..666bcd16d524bb31b901d5e0be9eeb7e18c80758 100644 (file)
@@ -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'