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

learn more… | top users | synonyms

0
votes
1answer
11 views

iOS: Absolute project path with xcodebuild

I use following command to build project using xcodebuild from the directory where .xcodeproj is. admin$ xcodebuild install DSTROOT=. INSTALL_PATH=/bin Could someone please tell me how to specify ...
0
votes
1answer
34 views

iOS: Building project from terminal using xcodebuild

I have a static library in the project. I have setup header search path correctly to point library directory recursively. Could someone please tell me why is following error while buling project from ...
0
votes
1answer
41 views

cstdint file not found when building on the command line

I'm trying to build a couple of projects on the command like but I keep getting screwed up by an failure to find <cstdint>. The project tries to build an when it gets to a specific line in the ...
1
vote
0answers
41 views

xcodebuild workspace and scheme

I am a little confused as to what happens with the xcodebuild command line tool when you specify a workspace and scheme. I understand how a configured scheme works in the XCode IDE GUI. The build ...
0
votes
0answers
17 views

to pass preferences value through command line app execution

I am creating an IOS app with cordova 2.1.0 framework and i have also added preferences name value pairs in settings tool for the app. I want to pass the value of the preferences parameter through ...
0
votes
1answer
32 views

Xcodebuild's .app crashes immediately? But Xcode's .app runs successfully

I'm using xcodebuild to build and install my app on the simulator (by copying the .app to ~/Library/Application Support/iPhone Simulator/6.1/Applications/UUID/) from the command line. I use: ...
0
votes
0answers
26 views

cordova file not recognised when app built from command line + ios

I have created an app in IOS with cordovav 2.1.0 framework. I am building the app from command line(from the path where the proj_name.xcodeproj exists) with command as :- xcodebuild -sdk iphoneos6.1 ...
0
votes
0answers
44 views

High number of xcodebuild processes get created when I click RUN

XCODE version: 4.6.2 This is what happens when I click on RUN. Message: "Running 1 of 1 custom shell scripts" and the progress bar just halts. Then just creates a lot of xcodebuild processes(I can ...
1
vote
1answer
99 views

How to programmatically check if a certificate has been revoked?

I'm working on an xcode automated build system. When performing some pre-build validation I would like to check if the specified certificate file has been revoked. I understand that security ...
3
votes
1answer
49 views

How to detect that a provisioning profile is for development or distribution, programmatically

I would like to detect if a given provisioning profile is a development profile or a distribution (adhoc or app store) profile. I need to do this purely programmatically. I already understand how to ...
0
votes
0answers
47 views

Command `xcodebuild` failing to copy

So, I'm using a set of scripts from this repo, the iOS Universal Framework template, in order to create a universal framework. This has worked up until the most recent update to Xcode 4.6.2. Now, ...
0
votes
0answers
17 views

How choice compiler while building xcodeproject by xcodebuild

I think this is done using option buildsetting=value. I can get list of these options by key "-showBuildSettings". But I do not know what key is needed. Sorry for my bad english.
0
votes
0answers
13 views

Possible to make xcodebuild test show the compilation of the test

xcodebuild -workspace aWorkspace -scheme aScheme test both compiles and runs the tests associated with the scheme, but it doesn't show the compilation of the test suite. If there is a compilation ...
1
vote
2answers
81 views

Is there any way to get an XCode build setting to vary according to build ACTION (e.g. clean, rebuild)?

I'm trying to figure out exactly how schemes work in xcode and what they're for. I have a cross-platform product that's built on OS X using an external build system ( scons ). I'd like to be able to ...
0
votes
0answers
69 views

XCode 4.5 Command Line Build Error

I am using Xcode 4.5 and using terminal command line "xcodebuild" to build my application. But I am getting following error: The following build commands failed: CompileC ...
1
vote
0answers
79 views

How to run Xcode test using Xcodebuild

I've added a new target to my project of type unit testing bundle and added some test cases. I can run this from within Xcode but I can't figure out how to run it from the command line so that I can ...
1
vote
1answer
43 views

How to get name of distribution identity from .p12 file

I am trying to create automated build for Xcode. Till now everything is working just fine. For building the project from command line I am using this command xcodebuild –project {“xcode_project file ...
1
vote
1answer
80 views

xcodebuild: build Mac OS app

I'd like to do automating for my Mac App project. My environment is Mac OS 10.8.3; Xcode 4.6. I use the following command in the terminal: xcodebuild -project pro.xcodeproj -target MyProject ...
0
votes
1answer
62 views

Setting a #define from the command line in xcode 4.6

I'm trying get set a #define macro when doing a command line build using xcodebuild and having no luck. I've tried -DMYMACRO=1 and MYMACRO=1 everything else I can think of and nothing works. How ...
0
votes
1answer
108 views

Converting a xcodeproj in-app purchase to a pkg file from terminal (Bash) or how to convert a xcarchive file to a pkg file?

I am trying to create a bash script to automate the creation of in-app purchase pkg files. I am at a point that the script creates successfully all in-app purchase xcodeproj projects and then archive ...
2
votes
1answer
50 views

Why does “read -t” block in scripts launched from xcodebuild?

I have a script that creates a FIFO and launches a program that writes output to the FIFO. I then read and parse the output until the program exits. MYFIFO=/tmp/myfifo.$$ mkfifo "$MYFIFO" MYFD=3 eval ...
1
vote
1answer
167 views

xcodebuild from command line - entitlement issues -SecItemCopyMatching: missing entitlement

I have two applications - one has a space in the name, the other doesn't. when I try to run the application through my command line build process I have problems with the application being able to ...
4
votes
0answers
129 views

XCode: Documents and Library folder for xcode command line builds

One can easily build a project run it in the simulator both from the command line like so: 1, xcodebuild -project Someproject.xcodeproj -arch i386 -sdk iphonesimulator 2, ...
2
votes
0answers
92 views

how to set xcodebuild archive name and path

im using xcodebuild to automate my release process and would like to first do an: xcodebuild -scheme MyScheme archive and then build the ipa. the problem is that xcodebuild puts the xcarchive is ...
12
votes
1answer
205 views

SSL Connections Issues when running Unit Tests from the command line

Goal Our goal is to execute our Unit Tests within a Continuous Integration environment (Jenkins) (I believe it is essential for every question to state what exactly one is trying to achieve. Maybe ...
1
vote
1answer
72 views

How do I reference a dependent project built with a different configuration in Xcode?

I have two Xcode projects: Super and Sub. Super has a custom configuration: Enterprise. Sub only has the default configurations: Debug and Release. Super has a target dependency on Sub. When I build ...
0
votes
0answers
66 views

Building Objective-C framework for Mac

Ola, I followed this tutorial to build frameworks for iOS, https://github.com/jverkoey/iOS-Framework I was wondering how to convert it to build a framework for Mac. I am stuck on the build script. ...
0
votes
1answer
103 views

xcodebuild target name with Umlaut

I am trying to build an iOS App using Jenkins via the xcodebuild command. The problem is that xcodebuild does not detect the target with the German Umlaut ü. $ /usr/bin/xcodebuild -target ...
0
votes
0answers
60 views

xcodebuild fails with new literals

Hi, I'm using xcodebuild for jenkins, but with new xcode literals I get errors like: error: expected method to read dictionary element not found on object of type 'NSDictionary *' id ...
0
votes
0answers
76 views

useing xocdebuild build failed

I am getting the following after building from he command line using xcodebuild, any ideas what might be wrong? ** BUILD FAILED ** The following build commands failed: CompileC ...
1
vote
0answers
68 views

xcodebuild fails when specifying arch or sdk when a target builds for multiple archs

I have a target that builds an iPhone app. In the course of building the app, it builds an i386 (OS X) commandline target, set up as dependencies. This works just fine through XCode, but when I ...
-1
votes
1answer
74 views

Implicit dependencies do not work with xcodebuild

I have a little problem with one of my projects. In my workspace I have my main project and a lot of projects for static libraries. When I build from Xcode, everything works fine, but with xcodebuild, ...
1
vote
2answers
148 views

xcodebuild failure clang:error no such file or directory:

Having a problem when building with xcodebuild. My project/app builds fine with the Xcode - gui. It simply isn't finding/building the libcryptopp library which is part of the build process. The error ...
2
votes
1answer
204 views

Can I use Jenkins XCode Plugin to build an iPad project on Linux System?

Can I use Jenkins XCode Plugin to build an iPad project on Linux System? Only Compile and generate the ipa file for continuous build
1
vote
2answers
55 views

xcode slave now reports HTTP response code 400

Never had a problem before executing my xcode slave via java -jar jenkins-cli.jar on CloudBees. I get the following error response in the console window WILs-MacBook-Pro:tmp WPANNELL$ java -jar ...
1
vote
1answer
113 views

Project compiles in XCode but XCodeBuild produces error “No architectures …”

My project compiles fine when build within Xcode but it fails when I try to build it using xcodebuild, the last line of output is: === BUILD NATIVE TARGET XXX OF PROJECT YYY WITH CONFIGURATION Debug ...
0
votes
1answer
43 views

View failures when building with xcodebuild

We are building multiple targets with xcodebuild, but from the command line, all we get is failures like so: The following build commands failed: CompileC MOAIFmodExChannel.o ...
1
vote
1answer
267 views

“command not found” with custom run script and xcodebuild

I am running a customized script which includes a command (ios-sim) which should be known to bash (the binary lies in /usr/local/bin, $PATH knows). However, when invoked by xcodebuild the console logs ...
0
votes
1answer
188 views

Does xcodebuild command have some options about C++ compile options?

When I used Xcode 4.6 preview verion or xcodebuild command, I had a such error below. invalid suffix on literal; C++11 requires a space between literal and identifier However When I used Xcode4, ...
0
votes
0answers
45 views

xcodebuild command takes more in Xcode than in the Terminal

The scenario is simple: I have an aggregation target in my iOS project that builds a couple of libraries using an sh script, which is defined in a Run Script phase of the target. No other actions is ...
0
votes
1answer
190 views

How to show the xcodebuild command line from xcode?

I'm trying to build a working simulator build from xcodebuild. Compilation works but the final product won't run on the simulator when installed via WaxSim. If I build through the Xcode GUI then the ...
2
votes
0answers
145 views

How to distinguish between “Ad Hoc” and “App Store” Code Signing Identities in xcconfig files?

I'm trying to set up a Unity iOS project to run automated builds through Jenkins. So far, I've got Jenkins triggering a Unity build, which generates an XCode project. Then, using xcodebuild with ...
0
votes
0answers
74 views

Xcodebuild Clean PROJECT ONLY

I have a project which has a number of dependencies and i want to clean that project but not it's dependecies since they rarley change Is there any way i can do that ?
2
votes
1answer
77 views

OSX/Bash - detecting build failure

Using Xcodebuild directly from bash, how would one detect a failure? the exit code is always 0 regardless. I realize there's an "FAILED" or "SUCCEEDED" textural output, but isn't there a more elegant ...
2
votes
1answer
190 views

xcodebuild error scheme not configured for running

I'm trying to setup a jenkins environment for automated build. Everything works ok, when I'm in project development folder. However running same command from "jenkins" folder fails: xcodebuild ...
0
votes
0answers
86 views

Unable to run Xcodebuild command from php file on mac machine

I'm trying to run following command from php file and it's work fine. exec('/usr/bin/xcodebuild -version', $output); print_r($output); But when I'm trying to run following command and it wont ...
0
votes
1answer
70 views

Get exit code for eval command in sh

I'm trying to create a function in a shell script that takes a command and executes it using eval, and then does some post-processing based on the success of the command. Unfortunately the code is not ...
1
vote
3answers
126 views

xcodebuild says does not containe scheme

I have a curios issue. I have a project that I've worked on and always built from the XCode IDE, and it worked fine. Now I'm setting up Bamboo to build the project and as such am building it from ...
1
vote
0answers
73 views

Why won't my Settings.bundle update when I create an Enterprise Build with xcodebuild and xcrun?

Have been running a scripted build without problems for a few months now instead of using XCode to do it. When I create a build with XCode, that build has the up to date version of the ...
5
votes
2answers
413 views

Push IPA to Device via Command Line (after xcodebuild)?

Is it possible to push an IPA to a device via the command line? The IPA was built from the command line using xcodebuild and signed with a developer certificate. The device is not jail broken and was ...

1 2 3 4 5 9