Reference Number : DPD200007673
Version : 11.0.083
Operating System : Linux
Problem Description : When compiling a program with the "-fmudflap" compiler option, the compiler issues the following error:
catastrophic error: could not open source file "mf-runtime.h"
$ icc -V -c -fmudflap test.cpp
Intel(R) C Intel(R) 64 Compiler Professional for applications running on Intel(R) 64, Version 11.0 Build 20090318 Package ID: l_cproc_p_11.0.083
Copyright (C) 1985-2009 Intel Corporation. All rights reserved.
/opt/spdtools/compiler/cpro/Compiler/11.0/083/include/_intel_mf_runtime.h(7): catastrophic error: could not open source file "mf-runtime.h"
#include <mf-runtime.h>
^
compilation aborted for test.cpp (code 4)
Resolution Status : This issue will be resolved in a future compiler release. As a workaround, specify the full path to the mf-runtime.h header file on command line:
$ icpc -fmudflap test.cpp -I /opt/spdtools/compiler/ia32e/gcc-4.0.0/include -lmudflap
$
[DISCLAIMER: The information on this web site is intended for hardware system manufacturers and software developers. Intel does not warrant the accuracy, completeness or utility of any information on this site. Intel may make changes to the information or the site at any time without notice. Intel makes no commitment to update the information at this site. ALL INFORMATION PROVIDED ON THIS WEBSITE IS PROVIDED "as is" without any express, implied, or statutory warranty of any kind including but not limited to warranties of merchantability, non-infringement of intellectual property, or fitness for any particular purpose. Independent companies manufacture the third-party products that are mentioned on this site. Intel is not responsible for the quality or performance of third-party products and makes no representation or warranty regarding such products. The third-party supplier remains solely responsible for the design, manufacture, sale and functionality of its products. Intel and the Intel logo are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. *Other names and brands may be claimed as the property of others.]