zoukankan      html  css  js  c++  java
  • How to use Intel C++ Compiler in Visual Studio 2008

    Here are some tips:

    1. Convert all VC projects to ICL projects by Use Intel C++.

    2. Set Structure Alignment to 1 byte or 4 byte, otherwise ICL may default to 16 byte.

    3. If you don't want to have dependency on libmmd.dll, use Multi-threaded rather than Multi-threaded DLL to static link with ICL runtime.

    4. It's strongly recommended to build 3ds Max plugin using MSVC, instead of ICL, and you must set Structure Alignment to Default, which 3ds Max always uses(3ds Max is built using MSVC too).

    5. ICL may eliminate useful functions which fills global data in current module, but the filled data is only used in other modules, to disable this, I added printf in such functions, nasty fix...

  • 相关阅读:
    作业2(5)
    作业2(7)
    作业2(4)
    作业2(3)
    作业2(1)
    作业3(5)
    作业3(6)
    实验7综合练习(4)
    实验7综合练习(2)
    计算成绩
  • 原文地址:https://www.cnblogs.com/len3d/p/2107713.html
Copyright © 2011-2022 走看看