Changeset 3354e6d


Ignore:
Timestamp:
Jul 20, 2017, 5:55:38 PM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
dfa66dc
Parents:
b15f6cf
Message:

remove -no-include-stdhdr command-line flag

Location:
src
Files:
1 added
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • src/driver/cfa.cc

    rb15f6cf r3354e6d  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jan 20 14:38:45 2017
    13 // Update Count     : 155
     12// Last Modified On : Thu Jul 20 15:54:45 2017
     13// Update Count     : 156
    1414//
    1515
     
    7676        bool cpp_flag = false;                                                          // -E or -M flag, preprocessor only
    7777        bool std_flag = false;                                                          // -std= flag
    78         bool noincstd_flag = false;                                                     // -no-include-stdhdr= flag
    7978        bool debugging __attribute(( unused )) = false;         // -g flag
    8079
     
    134133                        } else if ( arg == "-nohelp" ) {
    135134                                help = false;                                                   // strip the nohelp flag
    136                         } else if ( arg == "-no-include-stdhdr" ) {
    137                                 noincstd_flag = true;                                   // strip the no-include-stdhdr flag
    138135                        } else if ( arg == "-compiler" ) {
    139136                                // use the user specified compiler
     
    234231        args[nargs] = "-I" CFA_INCDIR;
    235232        nargs += 1;
    236         if ( ! noincstd_flag ) {                                                        // do not use during build
    237                 args[nargs] = "-I" CFA_INCDIR "/stdhdr";
    238                 nargs += 1;
    239         } // if
     233        args[nargs] = "-I" CFA_INCDIR "/stdhdr";
     234        nargs += 1;
    240235        args[nargs] = "-I" CFA_INCDIR "/concurrency";
    241236        nargs += 1;
Note: See TracChangeset for help on using the changeset viewer.