Questions tagged [xcodebuild]

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

builds one or more targets contained in an project, or builds a scheme contained in an Xcode workspace or Xcode project.

Usage

To build an Xcode project, run from the directory containing your project (i.e. the directory containing the projectname.xcodeproj package). If you have multiple projects in the this directory you will need to use -project to indicate which project should be built. By default, builds the first target listed in the project, with the default build configuration. The order of the targets is a property of the project and is the same for all users of the project.

See More

Building from the Command Line with Xcode FAQ

1388 questions
-1
votes
1 answer

Not able to generate release binary in xCode 4.0

I have a strange problem with xCode 4.0 to generate a release binary even I have stated "YES" to the release build property and "NO" into the debug, still debug binary is generated. Product is still red, so it means that has not been generated.
Vanya
  • 4,973
  • 5
  • 32
  • 57
-1
votes
1 answer

Will building & running another iOS project disassociate existing provisioning or app id's?

I recently recovered from not being able to test on my device in Xcode. After much headache, it turned out that I only needed to uninstall/reinstall iTunes, but I'd certainly rather not do so frequently. (See: prior thread) The troubles seemed to…
Old McStopher
  • 6,295
  • 10
  • 60
  • 89
-1
votes
2 answers

Xcodebuild generates intermediate files and .o files with absolute paths

I am running xcodebuild to build my project via command line and the strange thing is that the intermediate build files and the object files from the build folder contain hardcoded absolute paths from my machine. I think that xcodebuild does that…
Dan
  • 59
  • 7
-1
votes
1 answer

Dynamically modify the iOS project .mobileprovision

Now,I have a big question.I'm doing iOS dynamically compiled function, I want to use an iOS project, compile several different ipa file, use the Enterprise so that these items can be installed to the phone, I use xcodebuild command. But I do not…
Magic
  • 3
  • 2
-1
votes
1 answer

OSX Application Crashing in release mode

Any pointers how can we debug an application in the release mode, its crashing even a first line it self , below is the code snippet - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // Insert code here to initialize your…
Amitg2k12
  • 3,765
  • 10
  • 48
  • 97
-2
votes
3 answers

expected expression before '||' token in xcode

Hey i'm new in xcode coding so i'm learning my self. I write this code and an errors appear point to the first of "|" saying EXPECTED EXPRESSION BEFORE'||' TOKEN. this is my if statement: if ((nametextfield.text=@"")) || ([secretPin…
Ram
  • 11
  • 1
  • 3
-2
votes
1 answer

Objective-c and Xcode

HI every one I have a Question Regarding Importings Like i did application name as XX.h now i want to import the XX.h file into another APplication called as yy.m ... Is it possible to import the xx.h file into yy.m file if so please let me…
user185590
  • 451
  • 2
  • 7
  • 11
1 2 3
92
93