Questions related to the use of the command-line xcodebuild tool, which is part of Apple's Xcode toolset
4
votes
0answers
132 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, ...
3
votes
0answers
110 views
Starting processes with different unlocked keychains on MacOS
As described in question CLI: Switch keychains in order to sign an xcodebuild I have the problem of having to use two keychains for running xcodebuild. I need this because our enterprise & ...
3
votes
0answers
106 views
Reduce how much xcodebuild writes to command-line
I have a simple script that runs xcodebuild for a C++ project. However it prints out a huge amount of output for each file compiled, 10-20 lines, which makes it impossible to read easily. Ideally I'd ...
2
votes
0answers
93 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 ...
2
votes
0answers
152 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 ...
2
votes
0answers
260 views
Xcodebuild Archive Location
I'm currently trying to build an .xcarchive using this command line:
xcodebuild -project onething.xcodeproj -target onething archive
This places the .xcarchive within a hard to find file location, ...
2
votes
0answers
125 views
How can I get the same result of “security” command in PHP code & in terminal on OSX apache?
I got the bellow result in the terminal on OSX
macpro-terminal$ whoami
testuser
macpro-terminal$ groups
staff com.apple.access_screensharing everyone _appstore localaccounts _appserverusr ...
2
votes
0answers
128 views
xcodebuild build xcode project with dependent project failed. dependent project's target not found
My main project named sample.xcodeproj dependends on sdklib.xcodeproj. The target of sdklib.xocdeproj is sdk.a.
when I build the sample.xcodeproj with xcodebuild command
xcodebuild -project ...
2
votes
0answers
332 views
Error Dynamically change provisioning profile with xcodebuild
I want to automate the build of an iPad app with different provisioning profile (because I have different iOS developer accounts).
I found that i can copy the provisioning profiles directly in the ...
2
votes
0answers
130 views
Error when making device build:Command /usr/bin/codesign failed with exit code 1
I am getting this error when making iPad build for device.
"Command /usr/bin/codesign failed with exit code 1"
I searched my blogs and forums and followed steps but no success. Now I deleted all ...
2
votes
0answers
66 views
How to stop running the application if signed code is tampered with
We are writing plugin and bundle. As part of security measure we are planning to sign the code. Issue that we are facing is we have successfully signed the plugin and bundle. When i am running this ...
2
votes
0answers
423 views
xcodebuild skipping CodeSign step
I have a project that will build fine from the XCode v4.0.2 gui. However, when I run it from the command line via xcodebuild:
xcodebuild -target MyProj -configuration Release -sdk iphoneos
it will ...
2
votes
0answers
400 views
Emulate Run button in Xcode from command line
I'm looking for a way to build and run my app in the simulator from the command line. I need it to behave the same way as when you press Run in xcode.
I can build it with xcodebuild and I tried using ...
2
votes
0answers
154 views
Is it possible to direct output from build scripts the Xcode build log?
Is there a way to direct output from Xcode build scripts to the build log window in Xcode?
I've see it claimed that that 'echo' will do this, but my results do not appear in Xcode, but in system.log ...
1
vote
0answers
48 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 ...
1
vote
0answers
83 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
0answers
70 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
vote
0answers
74 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 ...
1
vote
0answers
31 views
Is there a way to determine if code is being compiled via Xcode or via XCodeBuild?
I have a small piece of conditional code (used for testing purposes) that I'd like the behavior to change depending upon if the code is being built via Xcode to if its built via XCodeBuild (i.e. if ...
1
vote
0answers
91 views
Xcodebuild: PhaseScriptExecution causes massive setenv flood in log
On my Jenkins CI server I have a job that builds a project with a custom build rule to compress certain files. Every time this script is executed (on each single file of that type), Xcodebuild logs ...
1
vote
0answers
255 views
iOS app Continuous Integration with Hudson: use -workspace and -scheme, or -project?
I'm trying to get a Hudson CI build set up for our iPhone app effort. We are using the Three20 UI frameworks to build the app. So far I can't make the build work if I use xcodebuild -project. The ...
1
vote
0answers
89 views
Xcode 4.2 stuck on My Mac64
Recently after I changed some project settings in my ios application project like the versioning and preprocessor macros, and also created a new configuration for testing. Whenever I run the app ...
1
vote
0answers
629 views
How to get valid provisioning profile to certificate?
Is it possible to get valid provisioning profile to certificate ?
I'm making automatically build system with xcodebuild and often need change provisioning.
I have got name of certificate like this ...
1
vote
0answers
288 views
XCode won't generate lib, framework or app bundle; partial success with xcodebuild command
This has been driving me nuts for a couple days now. I have been poking around on Google for hours with no luck. I have glimpsed a few tantalizingly close hits here (see link at bottom), but nothing ...
1
vote
0answers
466 views
“Build and Archive” option of Xcode 3.2.6 from Command Line
I need to perform following task from command line/script while developing application for Mac App Store:
1. Build and Archive my Xcode project
2. Save the archived application to my local disk as ...
1
vote
0answers
518 views
Build,Install,Execute an application without using XCode
I would like to build, install and execute an xcode project on device but without using XCode GUI. Is it possible?
Thanks in advance.
Niko
[EDIT]
And what about an IPA? is it possible to install, ...
0
votes
0answers
8 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
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
0answers
30 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
47 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 ...
0
votes
0answers
49 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 ...
0
votes
0answers
72 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 ...
0
votes
0answers
68 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
0answers
61 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 ...
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
0answers
76 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 ?
0
votes
0answers
92 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
0answers
67 views
build iphonesimulator6.0 target faild using command xcodebuild but succeed using Product-->Build in xcode UI
Error information:
clang: error: invalid architecture 'arm' for deployment target '-mios-simulator-version-min=4.3'
What's the different between command xcodebuild and Product-->Build?
0
votes
0answers
143 views
Using “Build Xcode Project.action” in automator
I successfully used xcodebuild to build my project in a bash script. I'm trying to port my script into automator, so I'm trying to take benefit using the "Build Xcode Project.action"
In the bash ...
0
votes
0answers
79 views
xcodebuild PLATFORM_NAME always == iphoneos
I am trying to build Xcode project from command line, using iphonesimulator as SDK. Here is the command line:
xcodebuild -scheme SchemeName -configuration Debug -sdk iphonesimulator ...
0
votes
0answers
110 views
How to run xcodebuild to build xcode project without any input
I want to build the xcode project with xcodebuild in command line, I can run it successfully, but when I run the command line, it always ask me inputting the username and password, I don't wanner to ...
0
votes
0answers
66 views
how to get iphone older simulator(4.3.2) on latest xcode(4.4.1)
Please suggest me a way to get older iphone simulator(4.3.2) on latest xcode (4.4.1) ???
More information
when i try in xcode>preference>download>components I see only iOS 5.0,to be downloaded.
But I ...
0
votes
0answers
108 views
Does the Apple Clang/LLVM Compiler #define a flag for default build types? (Not just Debug/Release.)
In Xcode 4.4, the menu "Product - Build For -" has four options:
Running
Testing
Profiling
Archiving
Can I test for which one is being built with #ifdef from the
clang preprocessor?
I'm *not* asking ...
0
votes
0answers
62 views
Vulnerability or Security testing tool for Mac applications
Is there a framework, approach or tool to test the Vulnerability in a Mac app ?
The idea is to test a Mac application for security related issues.
0
votes
0answers
36 views
launching xcodebuild from within my sandboxed app fails
I need to call xcodebuild within my sandboxed app.
My app generates objc files and projects, and I would like to compile it using xcodebuild - like in the past.
But the new required sandboxing, ...
0
votes
0answers
20 views
how can I get the build setting in xcodebuild in shell?
I want modify the value of CC_PREPROCESSOR_DEFINITIONS of xocde. CC_PREPROCESSOR_DEFINITIONS is a buildSetting of xcodebuild. I should get the value of CC_PREPROCESSOR_DEFINITIONS and add something ...
0
votes
0answers
59 views
Could I install and use xcodebuild on Darwin?
I do a lot of search, but I cannot find any reliable source. I've found iphone-dev tool supporting by Google, but the last post on the site is from 2010, so I think it is dead. Have you ever used ...
