From 9d88a917f22e0e5867005e677c33b927633d4358 Mon Sep 17 00:00:00 2001 From: Freemor Date: Thu, 4 Oct 2018 17:20:36 -0300 Subject: Update [qtcreator] to 4.7.1 and rebuild against clang 7.0.0 for x86_64 (i686/ARM not on clang 7.0.0 yet) --- libre/qtcreator/qtcreatorbug-19367a.patch | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 libre/qtcreator/qtcreatorbug-19367a.patch (limited to 'libre/qtcreator/qtcreatorbug-19367a.patch') diff --git a/libre/qtcreator/qtcreatorbug-19367a.patch b/libre/qtcreator/qtcreatorbug-19367a.patch new file mode 100644 index 000000000..397deda18 --- /dev/null +++ b/libre/qtcreator/qtcreatorbug-19367a.patch @@ -0,0 +1,36 @@ +From 807b0f78fc89409559ecc22229650a883def436d Mon Sep 17 00:00:00 2001 +From: Jonathan Liu +Date: Thu, 20 Sep 2018 13:46:05 +1000 +Subject: ProjectExplorer: Do not add too many newlines for remote processes + +Do not add newlines when remote process output gets flushed. + +Task-number: QTCREATORBUG-19367 +Change-Id: I9e878695279404d436264abd580884fb6a9e91ad +Reviewed-by: hjk +--- + src/plugins/projectexplorer/runconfiguration.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/plugins/projectexplorer/runconfiguration.cpp b/src/plugins/projectexplorer/runconfiguration.cpp +index 438d631c78..f2f5871a5a 100644 +--- a/src/plugins/projectexplorer/runconfiguration.cpp ++++ b/src/plugins/projectexplorer/runconfiguration.cpp +@@ -1659,12 +1659,12 @@ void SimpleTargetRunner::start() + + connect(&m_launcher, &ApplicationLauncher::remoteStderr, + this, [this](const QString &output) { +- appendMessage(output, Utils::StdErrFormatSameLine); ++ appendMessage(output, Utils::StdErrFormatSameLine, false); + }); + + connect(&m_launcher, &ApplicationLauncher::remoteStdout, + this, [this](const QString &output) { +- appendMessage(output, Utils::StdOutFormatSameLine); ++ appendMessage(output, Utils::StdOutFormatSameLine, false); + }); + + connect(&m_launcher, &ApplicationLauncher::finished, +-- +cgit v1.2.1 + -- cgit v1.2.3