From 44f53915e6e00237027c83254a366934d7313e53 Mon Sep 17 00:00:00 2001 From: Fabian Albert Date: Thu, 8 Aug 2024 11:59:23 +0200 Subject: [PATCH] 2nd attempt (no ccache) --- src/scripts/ci_build.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index a1e01f2d66e..5cb17ed91af 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -183,14 +183,15 @@ def sanitize_kv(some_string): '--with-build-dir=%s' % build_dir, '--link-method=symlink', '--enable-experimental-features', - '--debug'] + # '--debug', + '--with-debug-info', '--msvc-runtime=MD'] if target in ['shared', 'static']: install_prefix = tempfile.mkdtemp(prefix='botan-install-') flags += ['--prefix=%s' % (install_prefix)] - if ccache is not None: - flags += ['--no-store-vc-rev', '--compiler-cache=%s' % (ccache)] + # if ccache is not None: + # flags += ['--no-store-vc-rev', '--compiler-cache=%s' % (ccache)] if not disable_werror: pass