Skip to content

Commit

Permalink
Merge pull request microsoft#1213 from albertziegenhagel/request-tool…
Browse files Browse the repository at this point in the history
…set-version

Specify toolset version
  • Loading branch information
ras0219-msft authored Jun 6, 2017
2 parents 77e556a + 60825ee commit 4c33195
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 29 deletions.
9 changes: 7 additions & 2 deletions toolsrc/include/VcpkgPaths.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,19 @@ namespace vcpkg
const fs::path& get_cmake_exe() const;
const fs::path& get_git_exe() const;
const fs::path& get_nuget_exe() const;
const Toolset& get_toolset() const;

/// <summary>Retrieve a toolset matching a VS version</summary>
/// <remarks>
/// Valid version strings are "v140", "v141", and "". Empty string gets the latest.
/// </remarks>
const Toolset& get_toolset(const std::string& toolset_version) const;

Files::Filesystem& get_filesystem() const;

private:
Lazy<fs::path> cmake_exe;
Lazy<fs::path> git_exe;
Lazy<fs::path> nuget_exe;
Lazy<Toolset> toolset;
Lazy<std::vector<Toolset>> toolsets;
};
}
2 changes: 1 addition & 1 deletion toolsrc/src/PostBuildLint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ namespace vcpkg::PostBuildLint
const auto& fs = paths.get_filesystem();

// for dumpbin
const Toolset& toolset = paths.get_toolset();
const Toolset& toolset = paths.get_toolset(pre_build_info.platform_toolset);
const fs::path package_dir = paths.package_dir(spec);

size_t error_count = 0;
Expand Down
78 changes: 54 additions & 24 deletions toolsrc/src/VcpkgPaths.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,15 +269,36 @@ namespace vcpkg
return nullopt;
}

static Toolset find_toolset_instance(const VcpkgPaths& paths)
static std::vector<Toolset> find_toolset_instances(const VcpkgPaths& paths)
{
const auto& fs = paths.get_filesystem();

const std::vector<std::string> vs2017_installation_instances = get_VS2017_installation_instances(paths);
// Note: this will contain a mix of vcvarsall.bat locations and dumpbin.exe locations.
std::vector<fs::path> paths_examined;

std::vector<Toolset> found_toolsets;

// VS2015
const Optional<fs::path> vs_2015_installation_instance = get_VS2015_installation_instance();
if (auto v = vs_2015_installation_instance.get())
{
const fs::path vs2015_vcvarsall_bat = *v / "VC" / "vcvarsall.bat";

paths_examined.push_back(vs2015_vcvarsall_bat);
if (fs.exists(vs2015_vcvarsall_bat))
{
const fs::path vs2015_dumpbin_exe = *v / "VC" / "bin" / "dumpbin.exe";
paths_examined.push_back(vs2015_dumpbin_exe);
if (fs.exists(vs2015_dumpbin_exe))
{
found_toolsets.push_back({vs2015_dumpbin_exe, vs2015_vcvarsall_bat, L"v140"});
}
}
}

// VS2017
Optional<Toolset> vs2017_toolset;
for (const fs::path& instance : vs2017_installation_instances)
{
const fs::path vc_dir = instance / "VC";
Expand All @@ -303,41 +324,50 @@ namespace vcpkg
paths_examined.push_back(dumpbin_path);
if (fs.exists(dumpbin_path))
{
return {dumpbin_path, vcvarsall_bat, L"v141"};
vs2017_toolset = Toolset{dumpbin_path, vcvarsall_bat, L"v141"};
break;
}
}
if (auto value = vs2017_toolset.get())
{
found_toolsets.push_back(*value);
break;
}
}

// VS2015
const Optional<fs::path> vs_2015_installation_instance = get_VS2015_installation_instance();
if (auto v = vs_2015_installation_instance.get())
if (found_toolsets.empty())
{
const fs::path vs2015_vcvarsall_bat = *v / "VC" / "vcvarsall.bat";

paths_examined.push_back(vs2015_vcvarsall_bat);
if (fs.exists(vs2015_vcvarsall_bat))
System::println(System::Color::error, "Could not locate a complete toolset.");
System::println("The following paths were examined:");
for (const fs::path& path : paths_examined)
{
const fs::path vs2015_dumpbin_exe = *v / "VC" / "bin" / "dumpbin.exe";
paths_examined.push_back(vs2015_dumpbin_exe);
if (fs.exists(vs2015_dumpbin_exe))
{
return {vs2015_dumpbin_exe, vs2015_vcvarsall_bat, L"v140"};
}
System::println(" %s", path.u8string());
}
Checks::exit_fail(VCPKG_LINE_INFO);
}

System::println(System::Color::error, "Could not locate a complete toolset.");
System::println("The following paths were examined:");
for (const fs::path& path : paths_examined)
{
System::println(" %s", path.u8string());
}
Checks::exit_fail(VCPKG_LINE_INFO);
return found_toolsets;
}

const Toolset& VcpkgPaths::get_toolset() const
const Toolset& VcpkgPaths::get_toolset(const std::string& toolset_version) const
{
return this->toolset.get_lazy([this]() { return find_toolset_instance(*this); });
// Invariant: toolsets are non-empty and sorted with newest at back()
const auto& vs_toolsets = this->toolsets.get_lazy([this]() { return find_toolset_instances(*this); });

if (toolset_version.empty())
{
return vs_toolsets.back();
}
else
{
const auto toolset = Util::find_if(vs_toolsets, [&](const Toolset& toolset) {
return toolset_version == Strings::to_utf8(toolset.version);
});
Checks::check_exit(
VCPKG_LINE_INFO, toolset != vs_toolsets.end(), "Could not find toolset '%s'", toolset_version);
return *toolset;
}
}

Files::Filesystem& VcpkgPaths::get_filesystem() const { return Files::get_real_filesystem(); }
}
2 changes: 1 addition & 1 deletion toolsrc/src/commands_env.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace vcpkg::Commands::Env
args.check_and_get_optional_command_arguments({});

auto pre_build_info = Build::PreBuildInfo::from_triplet_file(paths, default_triplet);
System::cmd_execute_clean(Build::make_build_env_cmd(pre_build_info, paths.get_toolset()) + L" && cmd");
System::cmd_execute_clean(Build::make_build_env_cmd(pre_build_info, paths.get_toolset(pre_build_info.platform_toolset)) + L" && cmd");

Checks::exit_success(VCPKG_LINE_INFO);
}
Expand Down
2 changes: 1 addition & 1 deletion toolsrc/src/vcpkg_Build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ namespace vcpkg::Build
const fs::path& git_exe_path = paths.get_git_exe();

const fs::path ports_cmake_script_path = paths.ports_cmake;
const Toolset& toolset = paths.get_toolset();
auto pre_build_info = PreBuildInfo::from_triplet_file(paths, triplet);
const Toolset& toolset = paths.get_toolset(pre_build_info.platform_toolset);
const auto cmd_set_environment = make_build_env_cmd(pre_build_info, toolset);

const std::wstring cmd_launch_cmake =
Expand Down

0 comments on commit 4c33195

Please sign in to comment.