• VS2010: CommandLine Warning D9025


    基本上就是command line 中的编译选项和general中的冲突了。

    MSDN解释如下: 

    Command-Line Warning D9025 

    overriding 'option1' with 'option2'

    The option1 option was specified but was then overridden by option2. The option2 option was used.


    If two options specify contradictory or incompatible directives, the directive specified or implied in the option farthest to the right on the command line is used.

    If you get this warning when compiling from the development environment, and are not sure where the conflicting options are coming from, consider the following:

    An option can be specified either in code or in the project's project settings. If you look at the compiler's Command Line Property Pages and if you see the conflicting options in the All Options field then the options are set in the project's property pages, otherwise, the options are set in source code.

    If the options are set in project's property pages, look on the compiler's Preprocessor property page (with the project node selected in the Solution Explorer). If you do not see the option set there, check the Preprocessor property page settings for each source code file (in Solution Explorer) to make sure it's not added there.

    If the options are set in code it could be set either in code or in the windows headers. You might try creating a preprocessed file (/P) and search it for the symbol.
  • 相关阅读:
    ubuntu开机启动
    我的linux之路
    继承
    oracle 10g win7 win8 下的安装
    Java 安全检测
    BigDecimal 四舍五入
    Java Map 便利
    java split . |
    java 爬虫 Jsoup
    获取当前路径
  • 原文地址:https://www.cnblogs.com/mumuliang/p/2063213.html
Copyright © 2020-2023  润新知