My question is the following : I have developed a project using the very last version of eclipse + eclipse CDT, where all files are written in C++. I do not have the Intel compilers on my desktop environment.
That being said, I now want to compile the whole thing on a distant machine (cluster) which supports Intel compilers. As eclipse Makefiles are quite cascaded (many of them in subdir.mk, ...) and not easy to read for me. Does anyone has an idea on how to make my project ICC/ICPC compliant in an handy/elegant way ?
For example, would it be possible to properly setup my project under eclipse such that it would rewrite the makefiles for ICPC, even if I don't have it installed on my development machine. (cdt toolchains, ...) ?
Note : I don't use esoteric compilation options (that would not be compatible with icpc). I just link to libm, sometimes (which shouldn't be a problem). Note 2 : I output as a shared libraries (-fPIC - shared)
