3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 17:15:33 +00:00

Add MSYS2-compatible build.

This commit is contained in:
William D. Jones 2016-08-16 14:41:37 -04:00
parent 5767e4bc4d
commit 5299b17056
2 changed files with 17 additions and 4 deletions

View file

@ -687,7 +687,7 @@ std::string proc_share_dirname()
std::string proc_share_dirname()
{
std::string proc_self_path = proc_self_dirname();
# ifdef _WIN32
# if defined(_WIN32) && !defined(YOSYS_WIN32_UNIX_DIR)
std::string proc_share_path = proc_self_path + "share\\";
if (check_file_exists(proc_share_path, true))
return proc_share_path;
@ -1130,4 +1130,3 @@ struct ScriptCmdPass : public Pass {
} ScriptCmdPass;
YOSYS_NAMESPACE_END