summaryrefslogtreecommitdiff
path: root/lib/compile
diff options
context:
space:
mode:
authorJonathan L Peyton <jonathan.l.peyton@intel.com>2015-11-24 12:19:19 +0100
committerPeter Rosin <peda@lysator.liu.se>2015-11-24 12:25:48 +0100
commitc40e27e1c2a60f58e72e65d73d808f782d55494a (patch)
treea1e08f7ff581189f94f828e125d84cf364603f40 /lib/compile
parent1768e836d428082334a07f710b85073d2ab82969 (diff)
downloadautomake-c40e27e1c2a60f58e72e65d73d808f782d55494a.tar.gz
compile: add icl to compile wrapper script
* lib/compile: Have icl be treated similarly to cl (scriptversion): Update. * t/ax/am-test-lib.sh (require_tool): Handle icl. * t/compile7.sh: Add new test file for icl... * t/list-of-tests.mk (handwritten_TESTS): ...and use it. * NEWS: Update. * THANKS: Update. Copyright-paperwork-exempt: yes Signed-off-by: Peter Rosin <peda@lysator.liu.se>
Diffstat (limited to 'lib/compile')
-rwxr-xr-xlib/compile5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/compile b/lib/compile
index 69fad9c95..dc7a6e7df 100755
--- a/lib/compile
+++ b/lib/compile
@@ -1,7 +1,7 @@
#! /bin/sh
# Wrapper for compilers which do not understand '-c -o'.
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2015-11-24.11; # UTC
# Copyright (C) 1999-2015 Free Software Foundation, Inc.
# Written by Tom Tromey <tromey@cygnus.com>.
@@ -255,7 +255,8 @@ EOF
echo "compile $scriptversion"
exit $?
;;
- cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+ cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
func_cl_wrapper "$@" # Doesn't return...
;;
esac