I can't seem to properly suppress the banner logo when running icl with the /Qmic option under Windows....
> icl -Qmic test.cpp
Intel(R) C++ Intel(R) 64 Compiler XE for applications running on Intel(R) 64, Version 14.0.2.176 Build 20140130
Copyright (C) 1985-2014 Intel Corporation. All rights reserved.
> icl -nologo -Qmic test.cpp
icc: command line warning #10006: ignoring unknown option '-nologo'
It seems to me that "-nologo" does suppress the banner, but this flag also gets passed onto the mic cross compiler (icc), which displays an undesired warning about "unknown option". How can I make Qmic be quiet?