diff options
author | David Ostrovsky <david@ostrovsky.org> | 2016-02-20 10:20:00 +0100 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2016-02-21 19:39:37 +0000 |
commit | 3b1d7027de241ff02d7c72d2688a5e1acc25d5be (patch) | |
tree | 78d3084944c1354c972e4c763bf00f745c82b788 /solenv | |
parent | 3ff41a00aa25922be4cb71a657b124a1c4a8aef7 (diff) |
Force pdb write synchronization on all MS compilers
Change-Id: Id367ad150fa50cb3ed4d32cb5c7c8408f91e371a
Reviewed-on: https://gerrit.libreoffice.org/22544
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/com_MSC_defs.mk | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/solenv/gbuild/platform/com_MSC_defs.mk b/solenv/gbuild/platform/com_MSC_defs.mk index fab181dbb84e..836b89baa5be 100644 --- a/solenv/gbuild/platform/com_MSC_defs.mk +++ b/solenv/gbuild/platform/com_MSC_defs.mk @@ -254,14 +254,9 @@ gb_LinkTarget_LDFLAGS += \ /ignore:4217 -gb_DEBUGINFO_FLAGS := -Zi - -ifeq ($(VCVER),120) -# Use -FS with VS2013: "Force Synchronous PDB Writes. Forces writes to -# the program database (PDB) file--created by /Zi or /ZI--to be -# serialized through MSPDBSRV.EXE" -gb_DEBUGINFO_FLAGS+=-FS -endif +gb_DEBUGINFO_FLAGS := \ + -FS \ + -Zi \ gb_DEBUG_CFLAGS := $(gb_DEBUGINFO_FLAGS) |