From e9482b80272f673f625ac80d49ffea6b79fb6117 Mon Sep 17 00:00:00 2001 From: Paul Dufresne Date: Thu, 11 Feb 2021 16:02:18 +0100 Subject: Add noyywrap option We do not actually use yywrap, and this allows to avoid requiring libflex, making cross-compilations simpler. * lexxer.l: Add noyywrap option. --- lexxer.l | 1 + 1 file changed, 1 insertion(+) diff --git a/lexxer.l b/lexxer.l index 9579522..48dda4a 100644 --- a/lexxer.l +++ b/lexxer.l @@ -1,4 +1,5 @@ %option nounput +%option noyywrap %k 10000 %n 5000 -- cgit v1.2.3