From 0003c74f3be8d40ea450c12b555cef89ebdb8cd3 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 14 Jun 2026 23:51:15 -0400 Subject: [PATCH] Use fl LIBS instead of :libfl.a --- Rsconscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rsconscript b/Rsconscript index 9e3d5fa..87d3d05 100644 --- a/Rsconscript +++ b/Rsconscript @@ -2,7 +2,6 @@ configure do check_cxx_compiler check_program "flex" check_program "bison" - check_lib ":libfl.a" check_lib "pthread" check_lib "freeimage" end @@ -10,6 +9,7 @@ end env do |env| env["CCFLAGS"] += %w[-Wall -O2] env["CPPPATH"] += glob("src/**") + env["LIBS"] += %w[fl] env.CFile("^/parser/lexer.cc", "src/parser/parser.ll") env.CFile("^/parser/parser.cc", "src/parser/parser.yy")