Questions related to the use of the command-line xcodebuild tool, which is part of Apple's Xcode toolset
3
votes
1answer
24 views
Will I ever run into problems if I don't clean before I build?
I've written a git pre-commit hook that aborts the commit if my xcode project fails to compile.
It does this by running xcodebuild with the appropriate settings for my project. If the xcodebuild ...
0
votes
0answers
20 views
Xcodebuild output file name
I'am building a Cocoa Library in C++ using XCode4. I wonder if there is an option in the commandline xcodebuild to change output file name other than the project name.
xcodebuild -sdk ...
0
votes
1answer
133 views
Jenkins + iOS + TestFlight API
I installed a Jenkins and startet a Project with the Git Plugin, Xcode Plugin and the Testflight Plugin.
I can create automatic builds with the setup, but it is failing at the point on creating the ...
2
votes
1answer
29 views
Detect if Xcode is currently building
I want to track the time I am waiting for Xcode to be ready in a typical workday. From pressing "Run" to seeing the app on my sim/iphone screen. Is there a way to detect if Xcode is currently ...
0
votes
1answer
37 views
Error invalid architecture 'arm' when app from command line + ios
I want to build an ios app from command line with ios simulator.
The build settings are:
1. Architectures - armv7
2. Base SDK - Latest IOS(6.1)
3. Build Active Architecture only - yes
4. Valid ...
0
votes
0answers
102 views
clang: error: invalid architecture 'arm' for deployment target '-mios-simulator-version-min=5.0'
Now I am studying cocos2dx, and I use xcode build a demo, it's ok, but when I use xcodebuild to build it ,it's error.
xcodebuild -project proj.ios/CoinFlip.ios.xcodeproj -scheme CoinFlip.ios ...
0
votes
2answers
86 views
How to create ipa file using php
I am trying to run shell script from php file to build and archive the ios application. Here is what i have done so far
In my test.php file i have written below code:
<?php
echo ...
0
votes
1answer
29 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
61 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
94 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 ...
2
votes
0answers
85 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
53 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
39 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
52 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
139 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 ...
4
votes
1answer
67 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
59 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
18 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
17 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
109 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
83 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
100 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
67 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
107 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
92 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
137 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
52 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
218 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
174 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
108 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
237 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
89 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
74 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
120 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
65 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
82 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
79 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
110 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
266 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
219 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
63 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
165 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
47 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
354 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
206 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
244 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
160 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
93 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 ?


