mariadb/sql/gen_yy_files.cmake
Anel Husakovic edabb12509 MDEV-21286: bison warnings on ubuntu 20.04 on deprecated directive in sql_yacc.yy
Results with
```
%define api.pure                                    /* We have threads */
```
in `<build-dir>/sql/[yy_mariadb|yy_oracle].yy` files.

Reviewed by: wlad@mariadb.com
2021-09-22 07:27:02 +02:00

42 lines
1.3 KiB
CMake

if(POLICY CMP0054)
cmake_policy(SET CMP0054 NEW)
endif()
file(READ "${IN}" data)
file(WRITE "${OUT1}" "")
file(WRITE "${OUT2}" "")
set(where 0)
if(NOT(BISON_VERSION VERSION_LESS "3.0.0"))
string(REPLACE "\n%pure-parser" "\n%define api.pure" data "${data}")
endif()
string(REGEX REPLACE "/\\* sql_yacc\\.yy \\*/" "/* DON'T EDIT THIS FILE. IT'S GENERATED. EDIT sql_yacc.yy INSTEAD */" data "${data}")
while(NOT data STREQUAL "")
string(REGEX MATCH "^(%[ie][^\n]*\n)|((%[^ie\n]|[^%\n])[^\n]*\n)+|\n+" line "${data}")
string(LENGTH "${line}" ll)
string(SUBSTRING "${data}" ${ll} -1 data)
if (line MATCHES "^%ifdef +${VAL1} *\n")
set(where 1)
set(line "\n")
elseif(line MATCHES "^%ifdef +${VAL2} *\n")
set(where 2)
set(line "\n")
elseif(line MATCHES "^%else( *| +.*)\n" AND where GREATER 0)
math(EXPR where "3-${where}")
set(line "\n")
elseif(line MATCHES "^%endif( *| +.*)\n")
set(where 0)
set(line "\n")
endif()
if(where STREQUAL 1)
file(APPEND "${OUT1}" "${line}")
string(REGEX REPLACE "[^\n]+" "" line "${line}")
file(APPEND "${OUT2}" "${line}")
elseif(where STREQUAL 2)
file(APPEND "${OUT2}" "${line}")
string(REGEX REPLACE "[^\n]+" "" line "${line}")
file(APPEND "${OUT1}" "${line}")
else()
file(APPEND "${OUT1}" "${line}")
file(APPEND "${OUT2}" "${line}")
endif()
endwhile()