krb5 commit: Fix name of .pdb file in ccapi/test/Makefile.in

Greg Hudson ghudson at mit.edu
Wed Sep 5 16:00:40 EDT 2018


https://github.com/krb5/krb5/commit/d281e3640b670afde642993448a27a33abd80cea
commit d281e3640b670afde642993448a27a33abd80cea
Author: Greg Hudson <ghudson at mit.edu>
Date:   Fri Aug 31 13:19:21 2018 -0400

    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 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/ccapi/test/Makefile.in b/src/ccapi/test/Makefile.in
index 85fe172..23befe8 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.


More information about the cvs-krb5 mailing list