From e7701efa826da2b1e8e8d9c38a0c91b18b02e4be Mon Sep 17 00:00:00 2001 From: stevenknight Date: Mon, 4 Aug 2003 12:20:50 +0000 Subject: [PATCH] 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 --- 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 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' -- 2.26.2