Changeset b740f0b


Ignore:
Timestamp:
Aug 22, 2018, 9:39:45 PM (6 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
d6f4488
Parents:
92f413c
Message:

remove double trialing slash for file names, fix -E flag, clean up suffix handling

Location:
driver
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • driver/cc1.cc

    r92f413c rb740f0b  
    1010// Created On       : Fri Aug 26 14:23:51 2005
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Jul 19 10:46:11 2018
    13 // Update Count     : 111
     12// Last Modified On : Wed Aug 22 17:26:09 2018
     13// Update Count     : 120
    1414//
    1515
     
    4747const string suffixes[NumSuffixes] = { "cfa", "hfa", };
    4848
    49 bool suffix( string arg ) {
     49
     50void suffix( string arg, const char * args[], int & nargs ) {
    5051        //std::cerr << arg << std::endl;
    5152        size_t dot = arg.find_last_of( "." );
    5253        //std::cerr << dot << " " << (dot != string::npos ? arg.substr( dot + 1 ) : "fred" ) << std::endl;
    53         if ( dot == string::npos ) return false;
     54        if ( dot == string::npos ) return;
    5455        string sx = arg.substr( dot + 1 );
    5556        for ( int i = 0; i < NumSuffixes; i += 1 ) {
    56                 if ( sx == suffixes[i] ) return true;
    57         } // for
    58         return false;
     57                if ( sx == suffixes[i] ) {
     58                        args[nargs] = "-x";
     59                        nargs += 1;
     60                        args[nargs] = "c";
     61                        nargs += 1;
     62                        return;
     63                } // if
     64        } // for
    5965} // suffix
    6066
    6167
    62 void checkEnv( const char *args[], int &nargs ) {
     68void checkEnv( const char * args[], int & nargs ) {
    6369        char *value;
    6470
     
    263269
    264270                args[0] = compiler_name.c_str();
     271                suffix( cpp_in, args, nargs );                                  // check suffix
    265272                args[nargs] = cpp_in;
    266273                nargs += 1;
     
    310317
    311318                args[0] = compiler_name.c_str();
    312                 if ( suffix( cpp_in ) ) {
    313                         args[nargs] = "-x";
    314                         nargs += 1;
    315                         args[nargs] = "c";
    316                         nargs += 1;
    317                 } // if
     319                suffix( cpp_in, args, nargs );                                  // check suffix
    318320                args[nargs] = cpp_in;                                                   // input to cpp
    319321                nargs += 1;
     
    354356
    355357        if ( fork() == 0 ) {                                                            // child runs CFA
    356                 cargs[0] = ( *new string( bprefix + "/cfa-cpp" ) ).c_str();
     358                cargs[0] = ( *new string( bprefix + "cfa-cpp" ) ).c_str();
    357359
    358360                // Source file-name used to generate routine names containing global initializations for TU.
  • driver/cfa.cc

    r92f413c rb740f0b  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Aug 10 18:17:58 2018
    13 // Update Count     : 259
     12// Last Modified On : Wed Aug 22 17:26:19 2018
     13// Update Count     : 265
    1414//
    1515
     
    4343const string suffixes[NumSuffixes] = { "cfa", "hfa", };
    4444
    45 bool suffix( string arg ) {
     45void suffix( string arg, const char * args[], int & nargs ) {
    4646        //std::cerr << arg << std::endl;
    4747        size_t dot = arg.find_last_of( "." );
    4848        //std::cerr << dot << " " << (dot != string::npos ? arg.substr( dot + 1 ) : "fred" ) << std::endl;
    49         if ( dot == string::npos ) return false;
     49        if ( dot == string::npos ) return;
    5050        string sx = arg.substr( dot + 1 );
    5151        for ( int i = 0; i < NumSuffixes; i += 1 ) {
    52                 if ( sx == suffixes[i] ) return true;
     52                if ( sx == suffixes[i] ) {
     53                        args[nargs] = "-x";
     54                        nargs += 1;
     55                        args[nargs] = "c";
     56                        nargs += 1;
     57                        return;
     58                } // if
    5359        } // for
    54         return false;
    5560} // suffix
    5661
     
    294299                } else {
    295300                        bool opt = false;
    296                         if ( ! xflag && suffix( arg ) ) {
    297                                 args[nargs] = "-x";
    298                                 nargs += 1;
    299                                 args[nargs] = "c";
    300                                 nargs += 1;
     301                        if ( ! xflag ) {
     302                                suffix( arg, args, nargs );                             // check suffix
    301303                                // args[nargs] = ( *new string( string("-D__GCC_X__=c") ) ).c_str(); // add the argument for -x
    302304                                // nargs += 1;
     
    342344                nargs += 1;
    343345                if ( ! noincstd_flag ) {                                                        // do not use during build
    344                         args[nargs] = "-I" CFA_INCDIR "/stdhdr";
     346                        args[nargs] = "-I" CFA_INCDIR "stdhdr";
    345347                        nargs += 1;
    346348                } // if
    347                 args[nargs] = "-I" CFA_INCDIR "/concurrency";
    348                 nargs += 1;
    349                 args[nargs] = "-I" CFA_INCDIR "/containers";
     349                args[nargs] = "-I" CFA_INCDIR "concurrency";
     350                nargs += 1;
     351                args[nargs] = "-I" CFA_INCDIR "containers";
    350352                nargs += 1;
    351353        } else {
     
    470472
    471473        if ( Bprefix.length() == 0 ) {
    472                 Bprefix = !intree ? installlibdir : srcdriverdir;
     474                Bprefix = ! intree ? installlibdir : srcdriverdir;
     475                if ( Bprefix[Bprefix.length() - 1] != '/' ) Bprefix += '/';
    473476                args[nargs] = ( *new string( string("-D__GCC_BPREFIX__=") + Bprefix ) ).c_str();
    474477                nargs += 1;
     
    504507                args[nargs] = "-D__int8_t_defined";                             // prevent gcc type-size attributes
    505508                nargs += 1;
    506                 args[nargs] = ( *new string( string("-B") + Bprefix + "/" ) ).c_str();
     509                args[nargs] = ( *new string( string("-B") + Bprefix ) ).c_str();
    507510                nargs += 1;
    508511                args[nargs] = "-lm";
Note: See TracChangeset for help on using the changeset viewer.