Tagged Questions

Questions related to the use of the command-line xcodebuild tool, which is part of Apple's Xcode toolset

learn more… | top users | synonyms

37
votes
6answers
10k views

Continuous Integration for Xcode projects?

After using Hudson for continuous integration with a prior project, I want to set up a continuous integration server for the iPhone projects I'm working on now. After doing some research it looks like ...
24
votes
15answers
40k views

Code sign error with Xcode 3.2

I had a fully working build environment before upgrading to iPhone OS 3.1 and Xcode 3.2. Now when I try to do a build, I get the following: Code Sign error: Provisioning profile 'FooApp test' ...
17
votes
3answers
25k views

How to solve “Application failed codesign verification” when uploading to iTunes Connect?

I've got a problem that I couldn't solve with a deep search in different resources as most of the "similar" points out to be an error with Icon.png size, etc... I've tried to upload my application ...
16
votes
7answers
8k views

Running xcodebuild from a forked terminal

I'm trying to setup an automated build server for an iPhone application. I'd like to be able to have nightly adhoc beta builds so that testers can follow the development. I've setted up xcode ...
11
votes
2answers
2k views

Xcode 4: Run tests from the command line (xcodebuild)?

I've created a brand new iOS project in Xcode 4, and included unit tests. The default app has 2 targets, the main application and the unit test bundle. Using "Product > Test" (Command-U) builds the ...
10
votes
3answers
3k views

xcodebuild: simulator or device?

How do I specify to xcodebuild (the command line tool) whether I want to build for the simulator or device?
10
votes
1answer
10k views

XCode bundle identifier formatting from {PRODUCT_NAME}

Assume I have an iPhone application whose Product Name is "My App" (with a space between words) in XCode build settings. In my info.plist, the Bundle identifier is specified as ...
9
votes
8answers
1k views

iOS App crashing before entering main() with Xcode 4.2 & iOS 5

Background After upgrading xcode4.1/ios4 to xcode4.2/ios5 I am experiencing crashes while the App is loading and before it even enters main(). I have set a break point in main() but it is never ...
9
votes
1answer
2k views

How can I use .xcconfig files in Xcode 4?

I just switched over to Xcode 4 and I'm having trouble working with .xcconfig files for build settings. My targets that already had files assigned in Xcode 3 are all set up - a column titled ...
9
votes
2answers
3k views

Archive with Xcode's command line build tool (xcodebuild archive)

The command line tool to build Xcode projects, xcodebuild, has a new build action available in Xcode 4: archive. From man xcodebuild: archive Archive a scheme from the build root ...
8
votes
3answers
1k views

Building with LLVM and any optimization causes app to crash on startup

When I try to build my app with LLVM 2.0 in XCode 4.0.1 and any level or optimization that is not none (anything but -O0), the app crashes after i launch it on the device (simulator is ok). I can't ...
8
votes
2answers
605 views

Building a backwards compatible OS X app, when a new API is present?

I'm trying to upgrade an app (Clarke) to provide 10.6 compatibility. My plan is to use two different code paths depending on the version of OSX in use. On 10.5 it will use one controller, which ...
8
votes
4answers
2k views

What automated build system do Mac developers use?

my team is currently using buildbot to automate overnight and continuous-integration builds and regression tests. For builds and unit tests, the builder just invokes a script which syncs the sources ...
8
votes
6answers
4k views

Debugging exception thrown in Objective C and XCode

I am a long time Microsoft developer and I am new to iPhone development using XCode. So, I am reading a book and going through examples trying to teach myself how to write an iPhone application using ...
6
votes
1answer
538 views

application is closing just after first launch

I have build signed the iPhone application with Adhoc provisioning profile,after installing the application directly through Xcode it launched and then closed. I want to know this is correct behavior ...
5
votes
0answers
209 views

install application in iphone device through command line

I'm using xcodebuild install -alltargets -iphoneos4.2 -activeconfiguration provisioning_profile=path_of_my_provisioningprofile code_sign_identity=identity. This command is building my app and i am ...
5
votes
1answer
304 views

start clang static analyzer with xcodebuild

I'm trying to set up clang static analyzer on a hudson build server and if I follow the advises in this blog post I've got the following errors: cc1obj: error: unrecognized command line option ...
5
votes
2answers
484 views

Building with xcodebuild Timed out waiting for <IDEWorkspace, 0x2004cebc0>/“runContextManager.runContexts”

I am setting up my iphone project to run with hudson, my build script works fine locally, but when executing the following command on my snow leopard server mac xcodebuild -sdk iphoneos4.3 -workspace ...
5
votes
1answer
241 views

Terribly slow compiles using Xcode 3.2.5 and 3.2.6

OS X 10.6.7, Xcode 3.2.6 (although 3.2.5 shows the same behavior), Mac Pro - 2 2.4 GHz Quad w/ 8GB of RAM. We have several of these machines, all but one are running great. A normal clean/build takes ...
5
votes
3answers
3k views

Unable to copy dSYM file into archive

Whenever I run 'build and archive' from XCode I get the following message: Unable to copy dSYM file into archive. Please make sure that your application has set the “Debug Information Format” ...
5
votes
3answers
3k views

Install iOS app into xcode simulator?

We're iOS (and other mobile platform) developers and our sales folks routinely need to provide demos of our apps for clients. What we're trying to do is automate a process so sales people can go to a ...
5
votes
4answers
1k views

how do I force Xcode to rebuild the Info.plist file in my project every time I build the project?

Apparently the file gets cached, so it only gets built when it gets changed. I have environment variables set to increment my version number though, and such, and update them independently of the ...
5
votes
1answer
304 views

Build and Analyze using xcodebuild

Is there a way to do a Build and Analyze like in Xcode using xcodebuild? I'm using Xcode 3.2.2
5
votes
4answers
197 views

Most efficient way to do 22 different builds

I'm getting close to finishing my first relatively simple Xcode project (a custom installer) and I need to do 22 builds. Yes that wasn't a typo! What's different on each build is the PRODUCT_NAME, a ...
4
votes
3answers
943 views

Why are xcodebuild and Xcode 4.2 so slow?

I am using Xcode 4.2 on a relatively large project (a few ten thousand lines of code) and it is horribly slow. Editing is ok, but whenever I try to compile the project (in Xcode, or with xcodebuild on ...
4
votes
3answers
763 views

Xcode 4 build succeeds, command line build fails?

I have a project in Xcode 4 (the latest non-beta version) that builds fine when built in Xcode itself. Specifically, the Ld command correctly uses the derived data directory (where build products, ...
4
votes
1answer
440 views

How do you access Xcode environment (and build) variables from an external script?

I am writing a script to automate my iOS building. It will be run outside of Xcode, either via Terminal or from build automating software. Is there any way to have access to Xcode environment ...
4
votes
1answer
2k views

When I “Build for archive” in Xcode 4, where does the file go?

When I "Build for archive" in Xcode 4, where does the file go? As in, where on my computer is the archived app saved? Thanks
4
votes
3answers
1k views

How to I display compiler output or custom build steps output when building with xcode?

How can I see the output from the compiler of from the custom build steps (pre-action or post-action)?
4
votes
2answers
4k views

Xcode : Adding a project as a build dependency

Im playing around with the soundcloud api, in its instructions it says to drag SoundCloudAPI.xcodeproj into your project add it as a build dependency I can drag the project in pretty easily, but ...
4
votes
1answer
303 views

New Three20 Build-Error

i just upgraded my Project to the newest Three20 Build. When compiling i get following errors: Undefined symbols: "___restore_vfp_d8_d15_regs", referenced from: +[TTEntityTables(TTSingleton) ...
4
votes
1answer
893 views

Using info.plist for storing target-specific values for a multi-target app

I have a multi-target iPhone app which currently includes a header file with constant definitions that are conditionally included at build time depending on which target is being built. However, I ...
4
votes
1answer
684 views

TeamCity Integrated with Xcode Projects (BUILD RUNNER)

Im trying to get TeamCity to work with the github server for our xcode projects. I've got the git server working and now i'm stuck at the Build Runner Settings. i downloaded the teamcity-xcode ...
4
votes
5answers
1k views

How to speedup xcode builds without any project modifications?

Last version or XCode (3.2.1) is running very slow on OS X 10.6. What kinds of tweaks can you do to your Mac in order to speedup Xcode build process. I'm not looking for general hints like how to ...
4
votes
3answers
155 views

When my colleague changes code and commits it to the repository I can see the code, but xCode compiles as if his contributions weren't there

Have any other iPhone developers experienced this phenomenon? I can see his contributions in xCode - I see for example my colleague has wrapped a navigation controller around one of my view ...
4
votes
3answers
5k views

Setting a provisioning profile from within xcodebuild when making iPhone apps

I'm using xcodebuild to compile my iPhone app from the command line. Is there a way to pass in some sort of option to set the provisioning profile? There seems to be not very much information about ...
3
votes
1answer
277 views

Version mismatch in xcactivitylog after upgrading to XCode 4.2

I upgraded to XCode 4.2 and am getting the warning below while running command line builds 2011-10-22 20:16:39.327 xcodebuild[71845:1903] [MT] IDELogStore: Failed to open Build log store: Error ...
3
votes
2answers
294 views

Xcode source code directory

Goodday! ToDo: compile the files from a directory that is outside of my Xcode project. How to tell Xcode the path to look for source codes to compile (like the VPATH in a makefile)? Note1: ...
3
votes
1answer
302 views

Problem with XCode 4 and xcodebuild: cannot find the UninstalledProducts directory

After upgrading to XCode 4 our CI build scripts are not longer working properly. Part of our build process is to archive each app after it's built. To do this the script looks for the built app under ...
3
votes
1answer
381 views

Can't build XCode 4 Project from Textmate

I've opened a newly created XCode 4 project in TextMate (by dropping the project folder on the TextMate icon like the manual suggests) and have attempted to build it using the Command-B shortcut and ...
3
votes
4answers
4k views

llvm-gcc-4.2: error

The Project build & runs fine on a real device but a build for the iphone simulator finishes in this error 'llvm-gcc-4.2: error'. Any ideas? llvm-gcc-4.2: error trying to exec ...
3
votes
1answer
298 views

Xcode / Build automation - How do I pass the Code Signing Identity as an argument to xcodebuild?

I'm trying to automate our entire build process using hudson and a mashup of ruby scripts. Is it possible to pass the values for Versioning System, Bundle Version, Code Signing Identity and ...
3
votes
1answer
7k views

Steps to upload an iPhone application to the AppStore in xcode4

as xcode 3 and xcode 4 is totally different. i'm a bit lost to submit app to app store. Do i still need to duplicate "Release" to create "iphoneDistrubition" configuration. Or can I straight away ...
3
votes
0answers
281 views

Xcode distributed build not working

Here is my test setting: 2 Computers (MacPro 8 cores, Mac mini 2 cores), same MacOSX version (10.6.5 10H574, i386), same Apple clang version 2.0, same Xcode version (Version 3.2.5) it simply wont get ...
3
votes
1answer
414 views

Xcodebuild commandline fails on signing code with certificates

The xcodebuild project , I can open the Xcode UI and build the project. It signs the code also well. The same I was trying to build using the commandline tool xcodebuild.It gives "Code certificate ...
3
votes
2answers
2k views

iOS 4.1 SDK - Duplicate Symbols in Multiple Static library Linking for Device Builds

My company is building an app with SDK 4.1 for the iPhone. To do this we have 3 levels of project dependencies, our main App "CSM" is linking to our SDK called "csm-sdk" (in libsrc_csmsdk.a) csm-sdk ...
3
votes
2answers
439 views

build and analyze not working in my project

In my iPhone Project when i select build and analyze (shift + mac + A ) it will give me all potential memory leak in my project... but in my current project it is not working... when i intentionally ...
3
votes
1answer
2k views

Error when building using xcodebuild

I have an xcode Objective-C iPhone static library project. When I build it in xcode I get no errors or warnings. But when I build it using xcodebuild from the command line I get: ...
3
votes
4answers
2k views

Best way to install a custom cocoa framework

I have a custom framework that, following the advice in Apple's Framework Programming Guide >> Installing your framework I install in /Library/Frameworks. I do this by adding a Run Script build phase ...
3
votes
2answers
996 views

How do I change an existing XCode target from dynamic to static?

I'm working with an existing project that produces a dynamic library (Cocoa API). I'd rather generate a static library, but if I change the [Linking|Mach-O Type] field from "Dynamic Library" to ...

1 2 3 4 5