Skip to content

Commit

Permalink
Include libgcc in ignore_list
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard committed Sep 3, 2024
1 parent fb9c869 commit 412931f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions conda_build/post.py
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,11 @@ def check_overlinking_impl(
precs.append(pkg_vendored_dist)
ignore_list = utils.ensure_list(ignore_run_exports)
if subdir.startswith("linux"):
# libgcc-ng is the defaults & old conda-forge package name
ignore_list.append("libgcc-ng")
# conda-forge::libgcc-ng was renamed 08/27/2024
# see https://github.com/conda-forge/ctng-compilers-feedstock/pull/148
ignore_list.append("libgcc")

package_nature = {prec: library_nature(prec, run_prefix) for prec in precs}
lib_packages = {
Expand Down

0 comments on commit 412931f

Please sign in to comment.