Changeset 44bca7f for src/driver


Ignore:
Timestamp:
May 2, 2018, 3:24:46 PM (6 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, with_gc
Children:
6d539f83
Parents:
30dcc47
Message:

first attempt at warning control

Location:
src/driver
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/driver/Makefile.am

    r30dcc47 r44bca7f  
    1111## Created On       : Sun May 31 08:49:31 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Fri Oct 28 13:46:06 2016
    14 ## Update Count     : 10
     13## Last Modified On : Mon Apr 30 17:44:17 2018
     14## Update Count     : 11
    1515###############################################################################
    1616
    1717# applies to both programs
    18 AM_CXXFLAGS = -Wall -O2 -g -std=c++14
     18AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
    1919if BUILD_NO_LIB
    2020else
  • src/driver/Makefile.in

    r30dcc47 r44bca7f  
    294294
    295295# applies to both programs
    296 AM_CXXFLAGS = -Wall -O2 -g -std=c++14 $(am__append_1) $(am__append_2) \
    297         $(am__append_3)
     296AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src \
     297        $(am__append_1) $(am__append_2) $(am__append_3)
    298298cfa_SOURCES = cfa.cc
    299299
  • src/driver/cfa.cc

    r30dcc47 r44bca7f  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Feb  5 22:05:28 2018
    13 // Update Count     : 166
     12// Last Modified On : Wed May  2 14:32:08 2018
     13// Update Count     : 222
    1414//
    1515
     
    1919#include <unistd.h>                                                                             // execvp
    2020#include <string>                                                                               // STL version
    21 
     21#include <string.h>                                                                             // strcmp
     22
     23#include "Common/SemanticError.h"
    2224#include "config.h"                                                                             // configure info
    2325
     
    160162                                args[nargs] = argv[i];                                  // pass the argument along
    161163                                nargs += 1;
     164                        } else if ( arg == "-w" ) {
     165                                args[nargs] = argv[i];                                  // pass the argument along
     166                                nargs += 1;
     167                                args[nargs] = ( *new string( string("-D__CFA_FLAG__=") + arg ) ).c_str(); // add the argument for cfa-cpp
     168                                nargs += 1;
     169                        } else if ( prefix( arg, "-W" ) ) {                     // check before next tests
     170                                if ( arg == "-Werror" || arg == "-Wall" ) {
     171                                        args[nargs] = argv[i];                          // pass the argument along
     172                                        nargs += 1;
     173                                        args[nargs] = ( *new string( string("-D__CFA_FLAG__=") + arg ) ).c_str(); // add the argument for cfa-cpp
     174                                        nargs += 1;
     175                                } else {
     176                                        unsigned int adv = prefix( arg, "-Wno-" ) ? 5 : 2;
     177                                        args[nargs] = argv[i];                          // conditionally pass the argument along
     178                                        char * warning = argv[i] + adv;         // extract warning
     179                                        for ( const auto w : WarningFormats ) {
     180                                                if ( strcmp( warning, w.name ) == 0 ) { // replace the argument for cfa-cpp
     181                                                        args[nargs] = ( *new string( string("-D__CFA_FLAG__=") + arg ) ).c_str();
     182                                                        break;
     183                                                } // if
     184                                        } // for
     185                                        nargs += 1;
     186                                } // if
    162187                        } else if ( prefix( arg, "-B" ) ) {
    163188                                Bprefix = arg.substr(2);                                // strip the -B flag
     
    247272                #if ! defined(HAVE_LIBCFA_RELEASE)
    248273                        if( !debug ) {
    249                                 cerr << "error: Option -nodebug is not available, libcfa was not installed." << endl;
     274                                cerr << "error: Option -nodebug is unavailable, libcfa was not installed." << endl;
    250275                                exit( EXIT_FAILURE );
    251276                                }
     
    253278                #if ! defined(HAVE_LIBCFA_DEBUG)
    254279                        if( debug ) {
    255                                 cerr << "error: Option -debug is not available, libcfa-d was not installed." << endl;
     280                                cerr << "error: Option -debug is unavailable, libcfa-d was not installed." << endl;
    256281                                exit( EXIT_FAILURE );
    257282                                }
Note: See TracChangeset for help on using the changeset viewer.