Changeset 76c7f65e for src


Ignore:
Timestamp:
Jul 5, 2016, 10:30:57 AM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
a43e1d7
Parents:
888ee76
Message:

users can now both use complete path or name of file whan including libcfa containers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/driver/cfa.cc

    r888ee76 r76c7f65e  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // cfa.cc -- 
     7// cfa.cc --
    88//
    99// Author           : Peter A. Buhr
     
    247247        nargs += 1;
    248248
     249        args[nargs] = "-I" CFA_INCDIR "/containers";
     250        nargs += 1;
     251
    249252        if ( link ) {
    250253                // include the cfa library in case it's needed
     
    306309                args[nargs] = "-no-integrated-cpp";
    307310                nargs += 1;
    308                 args[nargs] = "-Wno-deprecated"; 
     311                args[nargs] = "-Wno-deprecated";
    309312                nargs += 1;
    310313                if ( ! std_flag ) {                                                             // default c99, if none specified
     
    312315                        nargs += 1;
    313316                } // if
    314                 args[nargs] = "-fgnu89-inline"; 
     317                args[nargs] = "-fgnu89-inline";
    315318                nargs += 1;
    316319                args[nargs] = ( *new string( string("-B") + Bprefix + "/" ) ).c_str();
Note: See TracChangeset for help on using the changeset viewer.