Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

xcodebuild - setting build dir doesn't generate dSYM

I am doing an archive with xcodebuild (xcode 5) through the command line as so:

xcodebuild -project MyProject.xcodeproj -scheme MyScheme -sdk iphoneos7.0 -configuration Release archive CODE_SIGN_IDENTITY="iPhone Distribution: My ID" -archivePath archive/MyArchive.xcarchive -xcconfig Config/MyReleaseConfig.xcconfig CONFIGURATION_BUILD_DIR=$SRCROOT/build/$CONFIGURATION$EFFECTIVE_PLATFORM_NAME

When I run this, I get my xcarchive generated and console output seems ok. However, when I explore the contents of the archive there is nothing under dSYM. Project settings are verified ok. If I run the same command as above BUT omit the CONFIGURATION_BUILD_DIR bit, I get the dSYM as expected. Do you know if there's a solution for this (i.e. should anything else be set). I want to have control over the build dir.

EDIT:

I've tried setting explicitly from command line (as opposed to in my scheme settings):

DEBUG_INFORMATION_FORMAT="dwarf-with-dsym"

and pos-processing to YES. Still no joy.

Thanks.

like image 536
John S Avatar asked Feb 18 '14 10:02

John S


1 Answers

Check again build settings. Take a look at Debug Information Format, it should have DWARF with dSYM file enter image description here

For futher information take a look OS X Man Pages xcodebuild and Xcode Build Setting Reference

like image 168
Artur Kucaj Avatar answered Nov 14 '22 21:11

Artur Kucaj