Skip to content

Commit

Permalink
2nd attempt (no ccache)
Browse files Browse the repository at this point in the history
  • Loading branch information
FAlbertDev committed Aug 8, 2024
1 parent 9a95e23 commit 44f5391
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/scripts/ci_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 44f5391

Please sign in to comment.