From a57502d05eb9a74754c15d7284872ee4cec0e8b0 Mon Sep 17 00:00:00 2001 From: Bob Buck Date: Tue, 2 Sep 2003 19:39:32 +0000 Subject: [PATCH] ICU-3233 Add support on Linux for the Intel ECC compiler X-SVN-Rev: 13011 --- icu4c/source/runConfigureICU | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/icu4c/source/runConfigureICU b/icu4c/source/runConfigureICU index e876baecb4..48a421d23a 100755 --- a/icu4c/source/runConfigureICU +++ b/icu4c/source/runConfigureICU @@ -40,6 +40,7 @@ The following names can be supplied as the argument for platform: HP-UX11ACC Use the Advanced C++ compiler on HP-UX 11 HP-UX11CC Use HP's C++ compiler on HP-UX 11 LinuxRedHat Use the GNU C++ compiler on Linux + LINUX/ECC Use the Intel ECC compiler on Linux MacOSX Use the GNU C++ compiler on MacOS X (Darwin) QNX Use QNX's QCC compiler on QNX/Neutrino SOLARISCC Use Sun's CC compiler on Solaris @@ -237,6 +238,12 @@ case $platform in CC=gcc; export CC CXX=g++; export CXX ;; + LINUX/ECC) + THE_OS="Linux" + THE_COMP="Intel ECC 70" + CC=ecc; export CC + CXX=ecc; export CXX + ;; CygWin) THE_OS="CygWin" THE_COMP="the GNU C++"