update build script to remove pdbs before building (msvc issues)
Also update ignores to ignore log zips
This commit is contained in:
@ -150,6 +150,10 @@ push-location $path_root
|
||||
$module_dll = join-path $path_build ( $project_name + '.dll' )
|
||||
$pdb = join-path $path_build ( $project_name + '.pdb' )
|
||||
|
||||
if (test-path $pdb) {
|
||||
remove-item $pdb
|
||||
}
|
||||
|
||||
$linker_args = ""
|
||||
$linker_args += ( $flag_msvc_link_disable_dynamic_base + ' ' )
|
||||
$linker_args += ( $flag_msvc_link_fixed_base_address + ' ' )
|
||||
@ -230,6 +234,10 @@ push-location $path_root
|
||||
return
|
||||
}
|
||||
|
||||
if (test-path $pdb) {
|
||||
remove-item $pdb
|
||||
}
|
||||
|
||||
write-host 'Building Host Module'
|
||||
$linker_args = ""
|
||||
# $linker_args += ( $flag_msvc_link_disable_dynamic_base + ' ' )
|
||||
|
Reference in New Issue
Block a user