diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-04-09 22:11:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 22:11:58 (GMT) |
commit | 291d38d6e92ff6a665ea9b095f9d816ae42a1249 (patch) | |
tree | 4e861af12dd9bc0fbe71c32f8d696495fdadbbc6 /Makefile.pre.in | |
parent | eed7686e9fe22a3eb5e1a1fc7d27c27fca070bd1 (diff) | |
download | cpython-291d38d6e92ff6a665ea9b095f9d816ae42a1249.zip cpython-291d38d6e92ff6a665ea9b095f9d816ae42a1249.tar.gz cpython-291d38d6e92ff6a665ea9b095f9d816ae42a1249.tar.bz2 |
Add ignore file for the abidump check (GH-25322)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 3028078..c328d35 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -731,7 +731,9 @@ regen-abidump: all @$(UPDATE_FILE) $(srcdir)/Doc/data/python$(LDVERSION).abi $(srcdir)/Doc/data/python$(LDVERSION).abi.new check-abidump: all - abidiff "libpython$(LDVERSION).so" $(srcdir)/Doc/data/python$(LDVERSION).abi --drop-private-types --no-architecture --no-added-syms + abidiff "libpython$(LDVERSION).so" $(srcdir)/Doc/data/python$(LDVERSION).abi --drop-private-types \ + --suppressions $(srcdir)/Doc/data/python$(LDVERSION).abi.ignorefile \ + --no-architecture --no-added-syms ############################################################################ # Regenerate all generated files |