Day 24 complete

This commit is contained in:
2023-09-29 15:58:18 -04:00
parent 4417738a6d
commit 465339743a
11 changed files with 95 additions and 66 deletions

View File

@ -201,8 +201,7 @@ if ( $vendor -match "clang" )
$map = join-path $path_build (split-path $map -Leaf)
# The PDB file has to also be time-stamped so that we can reload the DLL at runtime
$timestamp = Get-Date -Format "yyyy-MM-dd_HH-mm-ss"
$pdb = $binary -replace '\.(exe|dll)$', "_$timestamp.pdb"
$pdb = $binary -replace '\.(exe|dll)$', "_$(get-random).pdb"
$compiler_args += @(
$flag_no_color_diagnostics,
@ -322,8 +321,7 @@ if ( $vendor -match "msvc" )
$map = join-path $path_build (split-path $map -Leaf)
# The PDB file has to also be time-stamped so that we can reload the DLL at runtime
$timestamp = Get-Date -Format "yyyy-MM-dd_HH-mm-ss"
$pdb = $binary -replace '\.(exe|dll)$', "_$timestamp.pdb"
$pdb = $binary -replace '\.(exe|dll)$', "_$(get-random).pdb"
$compiler_args += @(
$flag_nologo,