Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MDEV-31727: pcre stack size not functioning on clang-16 #2700

Merged
merged 2 commits into from
Jul 21, 2023

Commits on Jul 18, 2023

  1. MDEV-31727: pcre stack size not functioning on clang-16

    noinline attribute was being ignored by clang-16 and reporting
    32 stack size on Gentoo, 16 locally on Fedora 38.
    
    Based on https://stackoverflow.com/questions/54481855/clang-ignoring-attribute-noinline
    appended noopt in addition to the gcc recognised attributes.
    
    After that the -pcre_exec(NULL, NULL, NULL, -999, -999, 0, NULL, 0)
    returned 1056, simlar to gcc.
    
    From https://bugs.gentoo.org/910188.
    
    Thanks Zhixu Liu for the great bug report.
    grooverdan committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    9098521 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2023

  1. Configuration menu
    Copy the full SHA
    1055c87 View commit details
    Browse the repository at this point in the history