File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ The Steps to Build Git with VS2015 or VS2017 from the command line.
26
26
Use ONE of the following forms which should match how you want to
27
27
compile git.exe.
28
28
29
- $ ./compat/vcbuild/vcpkg_copy_packages .bat debug
30
- $ ./compat/vcbuild/vcpkg_copy_packages .bat release
29
+ $ ./compat/vcbuild/vcpkg_copy_dlls .bat debug
30
+ $ ./compat/vcbuild/vcpkg_copy_dlls .bat release
31
31
32
32
3. Build git using MSVC from an SDK bash window using one of the
33
33
following commands:
Original file line number Diff line number Diff line change 66
66
}
67
67
push (@args , $lib );
68
68
} elsif (" $arg " eq " -lexpat" ) {
69
- push (@args , " expat .lib" );
69
+ push (@args , " libexpat .lib" );
70
70
} elsif (" $arg " =~ / ^-L/ && " $arg " ne " -LTCG" ) {
71
71
$arg =~ s / ^-L/ -LIBPATH:/ ;
72
72
push (@lflags , $arg );
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ sub createProject {
80
80
$libs_release = join (" ;" , sort (grep /^(?!libgit\.lib|xdiff\/lib\.lib|vcs-svn\/lib\.lib)/, @{$$build_structure {" $prefix${name} _LIBS" }}));
81
81
$libs_debug = $libs_release ;
82
82
$libs_debug =~ s / zlib\. lib/ zlibd\. lib/ g ;
83
+ $libs_debug =~ s / libexpat\. lib/ libexpatd\. lib/ g ;
83
84
$libs_debug =~ s / libcurl\. lib/ libcurl-d\. lib/ g ;
84
85
}
85
86
Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ sub handleLinkLine
349
349
} elsif (" $part " eq " -lcurl" ) {
350
350
push (@libs , " libcurl.lib" );
351
351
} elsif (" $part " eq " -lexpat" ) {
352
- push (@libs , " expat .lib" );
352
+ push (@libs , " libexpat .lib" );
353
353
} elsif (" $part " eq " -liconv" ) {
354
354
push (@libs , " libiconv.lib" );
355
355
} elsif ($part =~ / ^[-\/ ]/ ) {
You can’t perform that action at this time.
0 commit comments