summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Linux-Intel-C.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Intel compiler: add -isystem flag under LinuxAlex Neundorf2014-02-061-0/+1
| | | | | | | This makes the SYSTEM keyword work with the Intel compiler under Linux. AFAIK this is supported neither under Windows nor OSX. Alex
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-1/+1
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Consolidate Linux Intel compiler informationBrad King2009-12-041-7/+1
| | | | | We consolidate duplicate code from Platform/Linux-Intel-<lang>.cmake files into a macro defined in Platform/Linux-Intel.cmake.
* Create INTERPROCEDURAL_OPTIMIZATION build featureBrad King2009-10-021-1/+3
| | | | | | | | This commit creates target and directory properties to enable the Intel interprocedural optimization support on Linux. Enabling it adds the compiler option '-ipo' and uses 'xiar' to create archives. See issue #9615.
* Use Intel for Linux flags only on LinuxBrad King2009-09-011-0/+6
| | | | | | The commit "Split Intel compiler information files" moved some Linux specific flags into the platform-independent Intel compiler info files. This moves them back.
* Split Intel compiler information filesBrad King2009-08-211-16/+0
| | | | | | This moves platform-independent Intel compiler flags into separate "Compiler/Intel-<lang>.cmake" modules. Platform-specific flags are left untouched.
* ENH: Add preprocessor and assembly rules for IntelBrad King2008-08-061-0/+3
|
* ENH: support intel compiler on linuxBill Hoffman2008-04-251-0/+13