From d281e3640b670afde642993448a27a33abd80cea Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Fri, 31 Aug 2018 13:19:21 -0400 Subject: [PATCH] Fix name of .pdb file in ccapi/test/Makefile.in The -Fd cl option specifies the location of the program database filename, which should have the extension .pdb. Using a .obj extension causes a build failure with MSVC version 14.15.26726. ticket: 8732 (new) --- src/ccapi/test/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ccapi/test/Makefile.in b/src/ccapi/test/Makefile.in index 85fe172354..23befe8ea5 100644 --- a/src/ccapi/test/Makefile.in +++ b/src/ccapi/test/Makefile.in @@ -151,7 +151,7 @@ build-tests: $(TEST_NAMES) $(TEST_NAMES): @echo DBG: $@ - $(CC) $(ALL_CFLAGS) -Fe$(TESTDIR)$(S)$@.exe -Fd$(OBJDIR)$(S)$@.obj $@.c $(OBJECTS) $(LIBS) + $(CC) $(ALL_CFLAGS) -Fe$(TESTDIR)$(S)$@.exe -Fd$(OBJDIR)$(S)$@.pdb $@.c $(OBJECTS) $(LIBS) # Clean .obj from .: $(RM) $@.$(OBJEXT) ##-- These two rules build each element of the list. -- 2.47.2