Skip to content
  • William Light's avatar
    extras/syms: fix symbol regex on mac-o binaries · 944debb1
    William Light authored
    mac-o symbols are prefixed with an underscore. when specifying multiple
    sub-regexes (e.g. 'sym1|sym2|sym3'), only the first will be matched
    (since the expansion turns into '(?P<symbol>_?sym1|sym2|sym3)'). here,
    this is remedied by wrapping the symbol regex in a paren group.
    944debb1