Changeset 6e4b913 for src/driver


Ignore:
Timestamp:
Jul 10, 2016, 4:35:32 PM (8 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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:
4e06c1e, c13d970
Parents:
07bc165
Message:

allow 32-bit compilation of cfa-cpp, and 32-bit compilation of CFA programs (including CFA libraries)

Location:
src/driver
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/driver/Makefile.in

    r07bc165 r6e4b913  
    9595CFA_BACKEND_CC = @CFA_BACKEND_CC@
    9696CFA_BINDIR = @CFA_BINDIR@
     97CFA_FLAGS = @CFA_FLAGS@
    9798CFA_INCDIR = @CFA_INCDIR@
    9899CFA_LIBDIR = @CFA_LIBDIR@
  • src/driver/cfa.cc

    r07bc165 r6e4b913  
    1010// Created On       : Tue Aug 20 13:44:49 2002
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jul  5 20:56:18 2016
    13 // Update Count     : 140
     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 debugging = false;                                                         // -g flag
    90         (void) debugging;                                                               // remove unused variable warning
     89        bool debugging __attribute(( unused )) = false;         // -g flag
    9190
    9291        const char *args[argc + 100];                                           // cfa command line values, plus some space for additional flags
     
    245244        } // if
    246245
     246        // add the CFA include-library paths, which allow direct access to header files without directory qualification
     247
    247248        args[nargs] = "-I" CFA_INCDIR;
    248249        nargs += 1;
Note: See TracChangeset for help on using the changeset viewer.