From c01275a7f65acf8d3d53c683dc055359c7fd7a83 Mon Sep 17 00:00:00 2001 From: probonopd Date: Tue, 14 Feb 2017 23:30:53 +0100 Subject: [PATCH] Strip without -x --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index fd679c9..507e578 100644 --- a/shared/shared.cpp +++ b/shared/shared.cpp @@ -646,7 +646,7 @@ void runStrip(const QString &binaryPath) LogDebug() << "Using strip:"; LogDebug() << " stripping" << resolvedPath; QProcess strip; - strip.start("strip", QStringList() << "-x" << resolvedPath); + strip.start("strip", QStringList() << resolvedPath); if (!strip.waitForStarted()) { if(strip.errorString().contains("execvp: No such file or directory")){ LogError() << "Could not start strip.";