ios: adding dsymutil build step

The lldb debugger sometime returns misleading debug information
unless a dsym has been created.
This creates a build step to do it.

Task-number: QTCREATORBUG-11580
Change-Id: I7acf2e539cf189d0237e1d502fab2837f17aa489
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@digia.com>
This commit is contained in:
Fawzi Mohamed
2014-03-12 21:25:28 +01:00
parent 12730f8444
commit cbe8740a8f
8 changed files with 697 additions and 4 deletions

View File

@@ -36,6 +36,7 @@
#include "iosdeploystepfactory.h"
#include "iosdevicefactory.h"
#include "iosmanager.h"
#include "iosdsymbuildstep.h"
#include "iosqtversionfactory.h"
#include "iosrunfactories.h"
#include "iossettingspage.h"
@@ -72,6 +73,7 @@ bool IosPlugin::initialize(const QStringList &arguments, QString *errorMessage)
addAutoReleasedObject(new Internal::IosSimulatorFactory);
addAutoReleasedObject(new Internal::IosBuildStepFactory);
addAutoReleasedObject(new Internal::IosDeployStepFactory);
addAutoReleasedObject(new Internal::IosDsymBuildStepFactory);
addAutoReleasedObject(new Internal::IosDeployConfigurationFactory);
return true;