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.";