Remove TRACE_PARSER support

Attempting to build with this gave an "undefined reference to `yydebug'"
error (maybe a version issue with bison?), and I don't think it's been
used for recent parser debugging either.
This commit is contained in:
Rangi
2021-11-22 17:31:19 -05:00
committed by Eldred Habert
parent aac839f389
commit c2ca46c27d
2 changed files with 0 additions and 13 deletions

View File

@@ -25,7 +25,6 @@ endif()
option(SANITIZERS "Build with sanitizers enabled" OFF) # Ignored on MSVC
option(MORE_WARNINGS "Turn on more warnings" OFF) # Ignored on MSVC
option(TRACE_PARSER "Trace parser execution" OFF)
if(MSVC)
# MSVC's standard library triggers warning C5105,
@@ -88,7 +87,3 @@ if(CMAKE_BUILD_TYPE STREQUAL "Release")
message(CHECK_FAIL "no")
endif()
endif()
if(TRACE_PARSER)
target_compile_definitions(rgbasm PRIVATE -DYYDEBUG)
endif()