source: src/CompilationState.h @ 3e96559

ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 3e96559 was 3e96559, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

add --help option for cfa-cpp to show options, and restructure the option handling code

  • Property mode set to 100644
File size: 970 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// CompilationState.h --
8//
9// Author           : Rob Schluntz
10// Created On       : Mon Ju1 30 10:47:01 2018
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu May  2 07:46:12 2019
13// Update Count     : 3
14//
15
16extern int yydebug;                   // set for -g flag (Grammar)
17extern int
18        astp,
19        bresolvep,
20        bboxp,
21        bcodegenp,
22        ctorinitp,
23        declstatsp,
24        exprp,
25        expraltp,
26        genericsp,
27        libcfap,
28        nopreludep,
29        noprotop,
30        nomainp,
31        parsep,
32        resolvep,
33        resolvprotop,
34        symtabp,
35        treep,
36        tuplep,
37        validp,
38        errorp,
39        codegenp,
40        prettycodegenp,
41        linemarks;
42
43// is the compiler building prelude or libcfa?
44inline bool buildingLibrary() {
45        return libcfap | treep;
46}
47
48// Local Variables: //
49// tab-width: 4 //
50// mode: c++ //
51// compile-command: "make install" //
52// End:  //
Note: See TracBrowser for help on using the repository browser.