3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

Handle setting environment on Windows

This commit is contained in:
Miodrag Milanovic 2024-11-28 14:39:49 +01:00 committed by N. Engelhardt
parent 8b0f665cc5
commit 1b403b82d7

View file

@ -41,8 +41,12 @@ struct SetenvPass : public Pass {
if(args.size() != 3)
log_cmd_error("Wrong number of arguments given.\n");
#if defined(_WIN32)
_putenv_s(args[1].c_str(), args[2].c_str());
#else
setenv(args[1].c_str(), args[2].c_str(), 1);
#endif
}
} SetenvPass;