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.
  • 相关阅读:
    java线程的几种状态
    java事务的处理
    Java多线程中Sleep与Wait的区别
    分享一百多套开发视频教程的下载地址
    [Java]读取文件方法大全
    Android开发人员必备的10 个开发工具
    CentOS 安装MySQL rpm方式安装
    记录一些经典的算法
    CentOS 7安装Redis服务
    linux查看文件大小,磁盘占用情况 du df命令
  • 原文地址:https://www.cnblogs.com/mumuliang/p/2063213.html
Copyright © 2011-2022 走看看