|
(I'm not sure if "flag" is the word I'm looking for, but I'll explain it.)
I am trying to compile a program that uses the GMP big number library. But to be able to compile with GMP, I have to add -lgmp to the end of the command. For example, if I want...
Started by Michael Dickens on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Right-click the target in the Xcode Groups and Files list and select Get Info.
By Zitrax.
|
|
What strategies can be used in general to decrease build times for any XCode project? I'm mostly interested in XCode specific strategies.
I'm doing iPhone development using XCode, and my project is slowly getting bigger and bigger. I find the compile ...
Started by Brad Parks on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
XCode.
Easy answer: add another machine running XCode on your local network.
C, Obj-C++, C++).
|
|
I have this IPhone app underway that was working fine, then I installed OS 10.6 and the shiny new XCode.
It's not compiling, instead coming up with the single error,
"There is no SDK with the name or path 'iphoneos3.0'"
I can't find such a file or folder...
Started by John R Doner on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The version 3.2 provided on the snow leopard CD-iPhone/5024/Help-With-Samble/ You need to download (or install) the new Snow-Leopard specific XCode/205/wo/dg5laHPPA3Bo3vC19gJp2Ooe5KP/0.0.17.2.1.... .
Add-on installer for Xcode 3.2 on Snow Leopard.
|
Ask your Facebook Friends
|
Anyone manage to write code that uses the mysqlclient library? I can get compiling working but not linking :(
XCode produces the following output:
Build TestMysql of project TestMysql with configuration Debug Ld build/Debug/TestMysql normal x86_64 cd ...
Started by Jacob on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Under the screen to add linker options with the + and - buttons .
Alternate methodology: Have you considered just using the Makefile you made in XCode/dYNuR
Ok, its an xcode bug.
Is the empty string.
|
|
Hello, I have a project that has to be set to "Objective-C++" for the "compile source as" value (no, "according to file type" will not work in my main project). I am having a problem with a file I got from a framework (specifically OpenFeint) that has...
Started by EToreo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Right-click the file in the Groups and Files list in Xcode, and select Get Info from the contextual.
|
|
I was getting the following error compiling and iPhone project. Anybody know how I may fix it? "vtable for oned::MultiFormatUPCEANReader", referenced from: __ZTVN4oned23MultiFormatUPCEANReaderE$non_lazy_ptr in MultiFormatUPCEANReader.o ld: symbol(s) not...
Started by Andres on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
And it's not an xcode thing, I'm using cmake for building and gcc as compiler (as xcode typically....
This is a terrible compiler error with little file - like I just did.
Hope this helps somebody solve their compile error.
|
|
I have some file writing code that works as expected, but prints an error on Debug mode, no output errors in Release.
Code:
#include <iostream> #include <string> #include <fstream> #include <sstream> using namespace std; int main...
Started by Brock Woolf on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If I compile the two line reduction you gave (with defines taken from Xcode's default settings for a Debug build in a C++ project):
g++ -D_GLIBCXX this under Xcode....
In Apple's libstdc++ , at least when compiled in debug mode.
|
|
Hello,
I need the openssl lib for some C code in my iPhone App. So I've put the lib into my project.
But when I compile it, Xcode throws me some errors:
error: openssl/ssl.h: No such file or directory
That's my code for including:
#include <openssl...
Started by Zopi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Getting this to compile....
Since that real devices don't.
Thanks, I'll check the header's location and set Xcode up.
Need to check where that header ended up, and perhaps alter Xcode's (or your project's) settings to include that location.
|
|
Is there a specific Xcode compiler flag that gets set when compiling for iPad?
I want to conditionally compile iPad vs iPhone/iPod Touch code for example:
#ifdef TARGET_IPAD code for iPad #else code for iPhone #endif
I know there is already TARGET_OS_...
Started by Rei on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use NSClassFromString of the possibility of running the app in both devices, there isn't a built-in compile-time check whether.
Instead of using compile-time flags, you should use run-time check e.g.
|
|
Hi,
I'm creating an application which must be 'hacker compatible', so that people can edit nibs and stuff. However, when I show package contents, the nibs are compiled so I can't open them in IB. Is there a way I can make Xcode don't compile the nibs?...
Started by Koning Baard XIV on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can normally done by Xcode..
That is where all the rules live that do things like compile xib files into nib files.
|