我在用nmake编译的时候用出现这个错误“fatal error U1052: file 'paradigm.mkf' not found”,请问paradigm.mkf这个文件是什么作用,在哪里,如果有的话能不能发个我。谢谢。

解决方案 »

  1.   

    U 开头的错误是 nmake 的, 你把 u1052 给 msdn , 显示以下.Error Message 
    file 'filename' not found
    NMAKE could not find the file specified with one of the following: /F option!INCLUDE preprocessing directiveAt sign (@) specifier for a response fileCheck that the file exists and the filename is spelled correctly.从文件名判断, 那个应该是 makefile 中 include 的外部文件
    配置 makefile 的.
      

  2.   

    是的,我在用nmake编译一个程序,但是我不知道paradigm.mkf这个文件原来是在哪里的,在网上也搜索不到。你能详细的说下么?谢谢了 
      

  3.   

    你找找代码树中有没有文档,
    如果有 , 看看文档中有没有对这个文件的说明.没有就在 makefile 中找到那个地方, 暂时去掉, 看看能否完成编译.猜测应该是个性化配置 makefile 用的,
    把一些可能会变化的配置放置到独立的文件中,
    保持主 makefile一致. 
      

  4.   

    Compiler/linker customization options这是在include这个文件的语句后面的注释。