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.
  • 相关阅读:
    Golang 爬虫02
    Golang使用正则
    gin框架对接快递100 查询快递跟踪记录 Golang实现快递查询
    Jetbrains系列产品2019.3.4最新激活方法[持续更新]
    Linux下安装Fiddler
    Golang 爬虫01
    Github进行fork后如何与原仓库同步
    Pr 的导出视频
    Linux-平均负载指数
    Linux-进程管理命令
  • 原文地址:https://www.cnblogs.com/mumuliang/p/2063213.html
Copyright © 2011-2022 走看看