Skip to content

Commit 7cd9bdb

Browse files
author
Matthew Stern
committed
lex fix
1 parent 8ff196e commit 7cd9bdb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CC=gcc
55
CXX=g++
66
MCS=$(MCS)
77

8-
LDFLAGS= -lm -lpthread -L. -ltopologic -pthread -lfl
8+
LDFLAGS= -lm -lpthread -L. -ltopologic -pthread #-lfl
99
CFLAGS=-Wall -Werror -g -fPIC -O2
1010
OBJ=$(SRC:.c=.o)
1111
AR=ar

parse/topologic_parser.lex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/* SPDX-License-Identifier: MIT WITH bison-exception */
22
/* Copyright © 2020 Matthew Stern, Benjamin Michalowicz */
33

4+
%option noyywrap
5+
46
%{
57
#include "topologic_parser.tab.h"
68
%}

0 commit comments

Comments
 (0)