Strip without -x
This commit is contained in:
+1
-1
@@ -646,7 +646,7 @@ void runStrip(const QString &binaryPath)
|
|||||||
LogDebug() << "Using strip:";
|
LogDebug() << "Using strip:";
|
||||||
LogDebug() << " stripping" << resolvedPath;
|
LogDebug() << " stripping" << resolvedPath;
|
||||||
QProcess strip;
|
QProcess strip;
|
||||||
strip.start("strip", QStringList() << "-x" << resolvedPath);
|
strip.start("strip", QStringList() << resolvedPath);
|
||||||
if (!strip.waitForStarted()) {
|
if (!strip.waitForStarted()) {
|
||||||
if(strip.errorString().contains("execvp: No such file or directory")){
|
if(strip.errorString().contains("execvp: No such file or directory")){
|
||||||
LogError() << "Could not start strip.";
|
LogError() << "Could not start strip.";
|
||||||
|
|||||||
Reference in New Issue
Block a user