Changes in src/driver/cfa.cc [6bfe5cc:af39199d]
- File:
-
- 1 edited
-
src/driver/cfa.cc (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/driver/cfa.cc
r6bfe5cc raf39199d 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Feb 5 22:05:28201813 // Update Count : 16612 // Last Modified On : Wed May 2 17:57:43 2018 13 // Update Count : 224 14 14 // 15 15 … … 19 19 #include <unistd.h> // execvp 20 20 #include <string> // STL version 21 21 #include <string.h> // strcmp 22 23 #include "Common/SemanticError.h" 22 24 #include "config.h" // configure info 23 25 … … 160 162 args[nargs] = argv[i]; // pass the argument along 161 163 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 const char * warning = argv[i] + adv; // extract warning 179 if ( SemanticWarning_Exist( warning ) ) { // replace the argument for cfa-cpp 180 args[nargs] = ( *new string( string("-D__CFA_FLAG__=") + arg ) ).c_str(); 181 } // if 182 nargs += 1; 183 } // if 162 184 } else if ( prefix( arg, "-B" ) ) { 163 185 Bprefix = arg.substr(2); // strip the -B flag … … 247 269 #if ! defined(HAVE_LIBCFA_RELEASE) 248 270 if( !debug ) { 249 cerr << "error: Option -nodebug is notavailable, libcfa was not installed." << endl;271 cerr << "error: Option -nodebug is unavailable, libcfa was not installed." << endl; 250 272 exit( EXIT_FAILURE ); 251 273 } … … 253 275 #if ! defined(HAVE_LIBCFA_DEBUG) 254 276 if( debug ) { 255 cerr << "error: Option -debug is notavailable, libcfa-d was not installed." << endl;277 cerr << "error: Option -debug is unavailable, libcfa-d was not installed." << endl; 256 278 exit( EXIT_FAILURE ); 257 279 }
Note:
See TracChangeset
for help on using the changeset viewer.