zoukankan      html  css  js  c++  java
  • 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.
  • 相关阅读:
    redis主从配置及哨兵
    解决Linux服务器 FIN_WAIT2 连接过多的问题
    jmeter集群
    Jmeter之TCP取样器
    pydoc
    Sikulix图形自动化
    apifox接口测试工具
    Airtest自动化测试工具
    NodeJs 入门到放弃 — 入门基本介绍(一)
    uni-app小白入门自学笔记(二)
  • 原文地址:https://www.cnblogs.com/mumuliang/p/2063213.html
Copyright © 2011-2022 走看看