aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-17 16:18:13 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-17 16:18:13 +0200
commitf62f04e376f83d650ab1067cdf0f058151828b8a (patch)
treed8d70b16f021d48fa053949d909fa206ce36927b
parent2b86800c0f7a66409d3d294b4e4d380594c2062e (diff)
parent5f64291ee14fb02caa0ff80a2e6ec6b52890357e (diff)
downloadnextpnr-f62f04e376f83d650ab1067cdf0f058151828b8a.tar.gz
nextpnr-f62f04e376f83d650ab1067cdf0f058151828b8a.tar.bz2
nextpnr-f62f04e376f83d650ab1067cdf0f058151828b8a.zip
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
-rw-r--r--gui/yosystab.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/yosystab.cc b/gui/yosystab.cc
index fba2362d..d83b969e 100644
--- a/gui/yosystab.cc
+++ b/gui/yosystab.cc
@@ -61,6 +61,7 @@ YosysTab::YosysTab(QString folder, QWidget *parent) : QWidget(parent)
connect(process, SIGNAL(readyReadStandardError()), this, SLOT(onReadyReadStandardError()));
connect(process, SIGNAL(readyReadStandardOutput()), this, SLOT(onReadyReadStandardOutput()));
connect(process, &QProcess::started, this, [this] { lineEdit->setEnabled(true); });
+/*
#if QT_VERSION < QT_VERSION_CHECK(5, 6, 0)
connect(process, &QProcess::error, this, [this](QProcess::ProcessError error) {
#else
@@ -73,6 +74,7 @@ YosysTab::YosysTab(QString folder, QWidget *parent) : QWidget(parent)
Q_EMIT deleteLater();
}
});
+*/
process->setWorkingDirectory(folder);
process->start("yosys");
}