aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorCharles Brunet <charles.brunet@optelgroup.com>2024-02-27 21:47:50 -0500
committerDylan Baker <dylan@pnwbakers.com>2024-03-01 12:09:22 -0800
commit76f6874e4841954a63ac9fb79deec353f50648d1 (patch)
treedb25d7a591629dae4d82e6fdabc0e7a0c779b03e /run_project_tests.py
parent4ed6d75d962b3d43a9f7e8f5154e48d0bef01cc9 (diff)
downloadmeson-76f6874e4841954a63ac9fb79deec353f50648d1.zip
meson-76f6874e4841954a63ac9fb79deec353f50648d1.tar.gz
meson-76f6874e4841954a63ac9fb79deec353f50648d1.tar.bz2
Fix base and compiler options not reconfigurable.
Fixes #12920.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 60ff56f..6fc9cb7 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -981,7 +981,7 @@ def have_working_compiler(lang: str, use_tmp: bool) -> bool:
return False
if not compiler:
return False
- env.coredata.process_new_compiler(lang, compiler, env)
+ env.coredata.process_compiler_options(lang, compiler, env)
try:
compiler.sanity_check(env.get_scratch_dir(), env)
except mesonlib.MesonException: