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

Add --allow-unrecognized-configure-options option #4429

Closed
Closed
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
1 change: 1 addition & 0 deletions easybuild/tools/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ def mk_full_default_path(name, prefix=DEFAULT_PREFIX):
False: [
'add_system_to_minimal_toolchains',
'allow_modules_tool_mismatch',
'allow_unrecognized_configure_options',
'backup_patched_files',
'consider_archived_easyconfigs',
'container_build_image',
Expand Down
4 changes: 4 additions & 0 deletions easybuild/tools/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,10 @@ def override_options(self):
'strlist', 'store', DEFAULT_ALLOW_LOADED_MODULES),
'allow-modules-tool-mismatch': ("Allow mismatch of modules tool and definition of 'module' function",
None, 'store_true', False),
'allow-unrecognized-configure-options': ("Allow builds with unrecognized arguments passed to ./configure "
"(NOT RECOMMENDED! It might hide actual errors e.g. "
"misspelling of intended or changed options)",
None, 'store_true', False),
'allow-use-as-root-and-accept-consequences': ("Allow using of EasyBuild as root (NOT RECOMMENDED!)",
None, 'store_true', False),
'backup-modules': ("Back up an existing module file, if any. Only works when using --module-only",
Expand Down