mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 20:29:02 +08:00
[vcpkg] Add missing debug statement and fix libc++ Filesystem TS issue.
This commit is contained in:
parent
8f0ebdf8d5
commit
120f444af3
@ -274,8 +274,11 @@ namespace vcpkg::System
|
||||
Debug::println("CreateProcessW() returned %lu", exit_code);
|
||||
return static_cast<int>(exit_code);
|
||||
#else
|
||||
Debug::println("system(%s)", cmd_line.c_str());
|
||||
fflush(nullptr);
|
||||
return system(cmd_line.c_str());
|
||||
int rc = system(cmd_line.c_str());
|
||||
Debug::println("system() returned %d", rc);
|
||||
return rc;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -357,7 +357,7 @@ namespace vcpkg::Build
|
||||
{
|
||||
{"CMD", "BUILD"},
|
||||
{"PORT", config.scf.core_paragraph->name},
|
||||
{"CURRENT_PORT_DIR", config.port_dir / "/."},
|
||||
{"CURRENT_PORT_DIR", config.port_dir},
|
||||
{"TARGET_TRIPLET", spec.triplet().canonical_name()},
|
||||
{"VCPKG_PLATFORM_TOOLSET", toolset.version.c_str()},
|
||||
{"VCPKG_USE_HEAD_VERSION",
|
||||
|
Loading…
Reference in New Issue
Block a user