Changeset 4e9c7c1


Ignore:
Timestamp:
Aug 3, 2017, 6:01:32 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
b9400889
Parents:
f1a4ccb
Message:

Update lex.ll to no longer require libflex.so, since it has name mangling issues on certain machines (e.g. my laptop)

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    rf1a4ccb r4e9c7c1  
    4343cfa_cpplib_PROGRAMS = driver/cfa-cpp
    4444driver_cfa_cpp_SOURCES = ${SRC}
    45 driver_cfa_cpp_LDADD = ${LEXLIB} -ldl                   # yywrap
     45driver_cfa_cpp_LDADD = -ldl                     # yywrap
    4646driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O2 -g -std=c++14
    4747driver_cfa_cpp_LDFLAGS = -Xlinker -export-dynamic
  • src/Makefile.in

    rf1a4ccb r4e9c7c1  
    262262am_driver_cfa_cpp_OBJECTS = $(am__objects_1)
    263263driver_cfa_cpp_OBJECTS = $(am_driver_cfa_cpp_OBJECTS)
    264 am__DEPENDENCIES_1 =
    265 driver_cfa_cpp_DEPENDENCIES = $(am__DEPENDENCIES_1)
     264driver_cfa_cpp_DEPENDENCIES =
    266265driver_cfa_cpp_LINK = $(CXXLD) $(driver_cfa_cpp_CXXFLAGS) $(CXXFLAGS) \
    267266        $(driver_cfa_cpp_LDFLAGS) $(LDFLAGS) -o $@
     
    548547cfa_cpplibdir = ${CFA_LIBDIR}
    549548driver_cfa_cpp_SOURCES = ${SRC}
    550 driver_cfa_cpp_LDADD = ${LEXLIB} -ldl                   # yywrap
     549driver_cfa_cpp_LDADD = -ldl                     # yywrap
    551550driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O2 -g -std=c++14
    552551driver_cfa_cpp_LDFLAGS = -Xlinker -export-dynamic
  • src/Parser/lex.ll

    rf1a4ccb r4e9c7c1  
    1515
    1616%option yylineno
     17%option noyywrap
    1718%option nounput
    1819
Note: See TracChangeset for help on using the changeset viewer.