Changeset 6ca6811


Ignore:
Timestamp:
Feb 23, 2019, 3:06:08 PM (5 years ago)
Author:
tdelisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
fd9ae1d
Parents:
1b54b54
Message:

Fixed compilation failures with basic type generation with VPATH builds.
Generation is still slightly broken since results will differ in VPATH build

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/BasicTypes-gen.cc

    r1b54b54 r6ca6811  
    88#include <assert.h>
    99#include <string.h>                                                                             // strlen
    10 #include "../config.h"                                                                  // configure info
     10#include "config.h"                                                                     // configure info
    1111
    1212enum Kind {
  • src/Makefile.am

    r1b54b54 r6ca6811  
    4444
    4545$(srcdir)/SynTree/Type.h : BasicTypes-gen.cc
    46         ${AM_V_GEN}${CXX} ${AM_CXXFLAGS} ${CXXFLAGS} ${AM_CFLAGS} ${<} -o BasicTypes-gen -Wall -Wextra -O2 -g -std=c++14
     46        ${AM_V_GEN}${CXXCOMPILE} $< -o BasicTypes-gen -Wall -Wextra
    4747        @./BasicTypes-gen
    4848        @rm BasicTypes-gen
  • src/Makefile.in

    r1b54b54 r6ca6811  
    15601560
    15611561$(srcdir)/SynTree/Type.h : BasicTypes-gen.cc
    1562         ${AM_V_GEN}${CXX} ${AM_CXXFLAGS} ${CXXFLAGS} ${AM_CFLAGS} ${<} -o BasicTypes-gen -Wall -Wextra -O2 -g -std=c++14
     1562        ${AM_V_GEN}${CXXCOMPILE} $< -o BasicTypes-gen -Wall -Wextra
    15631563        @./BasicTypes-gen
    15641564        @rm BasicTypes-gen
Note: See TracChangeset for help on using the changeset viewer.