Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conda_build/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def _get_default_settings():
# (GNU ld: -as-needed, Apple ld64: -dead_strip_dylibs -no_implicit_dylibs)
# 2. A missing package in reqs/run (maybe that package is missing run_exports?)
# 3. A missing (or broken) CDT package in reqs/build or (on systems without CDTs)
# 4. .. a missing value in the hard-coded but metadata-augmentable library whitelist
# 4. .. a missing value in the hard-coded but metadata-augmentable library allowlist
# It is important that packages do not suffer from 2 because uninstalling that missing
# package leads to an inability to run this package.
#
Expand Down
3 changes: 3 additions & 0 deletions conda_build/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,9 @@ def parse(data, config, path=None):
"post-link": str,
"pre-unlink": str,
"missing_dso_whitelist": None,
"missing_dso_allowlist": None, # preferred alias for missing_dso_whitelist
"runpath_whitelist": None,
"runpath_allowlist": None, # preferred alias for runpath_whitelist
"error_overdepending": None,
"error_overlinking": None,
"overlinking_ignore_patterns": [],
Expand Down
Loading
Loading