Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/driver/cfa.cc

    r35f9114 r6e4b913  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Aug  6 16:14:55 2016
    13 // Update Count     : 148
     12// Last Modified On : Thu Jul  7 08:56:01 2016
     13// Update Count     : 144
    1414//
    1515
     
    8787        bool cpp_flag = false;                                                          // -E or -M flag, preprocessor only
    8888        bool std_flag = false;                                                          // -std= flag
    89         bool noincstd_flag = false;                                                     // -no-include-stdhdr= flag
    9089        bool debugging __attribute(( unused )) = false;         // -g flag
    9190
     
    145144                        } else if ( arg == "-nohelp" ) {
    146145                                help = false;                                                   // strip the nohelp flag
    147                         } else if ( arg == "-no-include-stdhdr" ) {
    148                                 noincstd_flag = true;                                   // strip the no-include-stdhdr flag
    149146                        } else if ( arg == "-compiler" ) {
    150147                                // use the user specified compiler
     
    251248        args[nargs] = "-I" CFA_INCDIR;
    252249        nargs += 1;
    253         if ( ! noincstd_flag ) {                                                        // do not use during build
    254                 args[nargs] = "-I" CFA_INCDIR "/stdhdr";
    255                 nargs += 1;
    256         } // if
     250        args[nargs] = "-I" CFA_INCDIR "/stdhdr";
     251        nargs += 1;
    257252        args[nargs] = "-I" CFA_INCDIR "/containers";
    258253        nargs += 1;
Note: See TracChangeset for help on using the changeset viewer.