mirror of https://github.com/YosysHQ/yosys.git
add log_suppressed and fixed formatting
This commit is contained in:
parent
2797d67569
commit
a38273c19d
|
@ -536,14 +536,14 @@ int main(int argc, char **argv)
|
|||
if (getenv("HOMEDRIVE") != NULL && getenv("HOMEPATH") != NULL) {
|
||||
state_dir = stringf("%s%s/.local/state", getenv("HOMEDRIVE"), getenv("HOMEPATH"));
|
||||
} else {
|
||||
log_debug("$HOMEDRIVE and/or $HOMEPATH is empty. No history file will be created.");
|
||||
log_debug("$HOMEDRIVE and/or $HOMEPATH is empty. No history file will be created.\n");
|
||||
}
|
||||
#else
|
||||
if (getenv("XDG_STATE_HOME") == NULL || getenv("XDG_STATE_HOME")[0] == '\0') {
|
||||
if (getenv("HOME") != NULL) {
|
||||
state_dir = stringf("%s/.local/state", getenv("HOME"));
|
||||
} else {
|
||||
log_debug("$HOME is empty. No history file will be created.");
|
||||
log_debug("$HOME is empty. No history file will be created.\n");
|
||||
}
|
||||
} else {
|
||||
state_dir = stringf("%s", getenv("XDG_STATE_HOME"));
|
||||
|
@ -591,6 +591,8 @@ int main(int argc, char **argv)
|
|||
for (auto &fn : plugin_filenames)
|
||||
load_plugin(fn, {});
|
||||
|
||||
log_suppressed();
|
||||
|
||||
if (!vlog_defines.empty()) {
|
||||
std::string vdef_cmd = "read -define";
|
||||
for (auto vdef : vlog_defines)
|
||||
|
|
Loading…
Reference in New Issue