From 3af5f2686768cb67ab051bc2b585445814dd55ed Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Mon, 4 Aug 2003 12:20:50 +0000 Subject: Initialize a LIB environment variable for the Intel compiler. (Gary Oberbrunner) --- src/CHANGES.txt | 3 +++ src/engine/SCons/Tool/icl.py | 1 + 2 files changed, 4 insertions(+) diff --git a/src/CHANGES.txt b/src/CHANGES.txt index f10bb34..fd84cd5 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 1b653e3..666bcd1 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' -- cgit v0.12