Tagged Questions
19
votes
5answers
4k views
Can I use C++11 with Xcode?
I am considering the use of some C++11 features (like auto for instance) in some cross-platform projects (Windows+Mac). On Windows, Visual Studio supports parts of the upcoming C++11 standard that ...
15
votes
4answers
2k views
XCode automatically deactivating breakpoints
I'm using xcode in C++. I'm trying to debug my project, but at random intervals, it seems to ignore my breakpoints. There are three things that it does:
1) Sometimes, when I run, it automatically ...
14
votes
3answers
164 views
The actual result of name resolution in the class template is different from the c++ 03 standard
I test the code in the c++ standard ISO/IEC 14882-03 14.6.1/9 on Xcode 4.1 and Visual Studio 2008. The outputs of the two compiler are both different from the expected result of the standard.
The ...
12
votes
4answers
5k views
What versions of gcc, llvm and clang are in XCode 4?
For some reason, this information is difficult to come by.
We'd like to start using some of the C++0x features that are available in most compilers. But we are held back a bit by XCode 3, since it ...
11
votes
1answer
2k views
C++ using getline() prints: pointer being freed was not allocated in XCode
I'm trying to use std:getline() but getting a strange runtime error:
malloc: * error for object 0x10000a720: pointer being freed was not allocated
* set a breakpoint in malloc_error_break to ...
10
votes
1answer
380 views
XCode 4.1 no longer seems to create header file when you create c++ file, any idea how to make a template?
Why does Apple seem to hate C++ so much; this always worked in Xcode in prior versions, and still works with .m files. Why do they remove features people actually use every day? Not everyone just uses ...
10
votes
2answers
255 views
Is “0xffffffff00000000” an indication of a mix-up between 32-bit and 64-bit compilations?
I compiled Qt in 64 bit. My code is also compiled in 64 bit. I initialize a (pointer) member variable to zero. When I inspect it, XCode tells me that its value is not 0 but 0xffffffff00000000.
Is ...
9
votes
1answer
539 views
Redirecting I/O in Xcode 4
I just installed Xcode 4 and I'm trying to redirect input from a file to my C++ program. I've tried using the usual "< infile.txt" in the "Arguments" section of my Run scheme, but that didn't work. ...
8
votes
5answers
680 views
How to prevent a globally overridden “new” operator from being linked in from external library
In our iPhone XCode 3.2.1 project, we're linking in 2 external static C++ libraries, libBlue.a and libGreen.a. libBlue.a globally overrides the "new" operator for it's own memory management. However, ...
8
votes
6answers
3k views
GCC memory leak detection equivalent to Microsoft crtdbg.h?
After many years of working on a general-purpose C++ library using the Microsoft MSVC compiler in Visual Studio, we are now porting it to Linux/Mac OS X (pray for us). I have become accustomed and ...
8
votes
3answers
3k views
Debugging in XCode as root
In my program I need to create sockets and bind them to listen HTTP port (80). The program works fine when I launch it from command line with sudo, escalating permissions to root. Running under XCode ...
7
votes
2answers
193 views
cmake + xcode : error 'Build setting PRODUCT_NAME undefined'
I'm using cmake 2.8.3 to generate a C/C++ project file for xcode 3.2.5 ; the build goes generally fine, but I have to manually set the "Product Name" each time I generate the xcode project (in Project ...
7
votes
1answer
218 views
Xcode C++ debugging
I'm looking for a way to have the Xcode IDE pick up on the contents of my weird Boost template classes. Basically, classes complex enough that Xcode can't display their contents correctly.
Is there ...
7
votes
5answers
2k views
XCode debugger sucks; alternatives?
I've been programming on the Mac since I was a little kid using THINK C. I've never had to use a debugger as bad as the one that comes with XCode.
It's unresponsive, and bogs down further and ...
6
votes
1answer
245 views
Xcode C++ development, clarification needed
I absolutely love the way Xcode offers insight into possible available member functions of the language and would prefer to use it relative to, say, text mate, if not for an oddity i noticed today.
...
6
votes
2answers
493 views
Using C++0x in Xcode 4.2 project via CMake
I'm using CMake to generate a project file for Xcode 4.2 on OSX Lion, and I'm using some of the C++0x features in LLVM like nullptr and auto. In order to use these, Xcode requires that 2 project ...
6
votes
1answer
382 views
Xcode support of lambda functions
I have a program coded in VS that I'm trying to port over to Xcode. There are several issues I have ran into including use of lambda functions. Since Xcode uses gcc 4.2 and thus doesn't support C++11, ...
6
votes
3answers
177 views
GCC inline assembly error: Cannot take the address of 'this', which is an rvalue expression
I'm still fighting with GCC - compiling the following inline assembly code (with -fasm-blocks, which enables Intel style assembly syntax) nets me a strange error Cannot take the address of 'this', ...
6
votes
2answers
631 views
xcode std::wcout with wchar_t or std::wstring!
I am trying to print a wstring/wchar_t in xcode to the console but unfortunatelly it only works with basic chars (i think ascii) chars, everything else gets displayed in numbers, for instance the ...
6
votes
2answers
2k views
How can I use C++ with Objective-C in XCode
I want to use/reuse C++ object with Objective-C.
I have a hello.h that has the class definition, and hello.cpp for class implementation.
class Hello
{ int getX() ... };
And I use this class in ...
6
votes
6answers
470 views
g++ fails mysteriously only if a .h is in a certain directory
I'm experiencing an extremely weird problem in a fresh OSX 10.4.11 + Xcode 2.5 installation. I've reduced it to a minimal test case. Here's test.cpp:
#include "macros.h"
int main (void)
{
return ...
6
votes
3answers
1k views
Which macro to wrap Mac OS X specific code in C/C++
While reading various C and C++ sources, I have encountered two macros __APPLE__ and __OSX__. I found plenty of use of __OSX__ in various codes, especially those originating from *BSD systems.
...
6
votes
2answers
1k views
C++ code in iPhone app
I'm trying to use a C++ library (CLucene) from my Cocoa Touch iPhone application using Xcode 3.1.3. Everything works fine when I run in the iPhone simulator, but things get strange when I run on ...
6
votes
6answers
10k views
Build Boost on Mac with Xcode
I've recently got acquainted with Boost library and I'd like to use it in my Xcode project. But sadly there is no HowTo or FAQ on how to do it :(
What's the sequence of actions to build and use Boost ...
6
votes
4answers
873 views
How can I link a dynamic library in x-code?
I am currently developing a program in Qt and it uses the library libqextserialport.1.dylib.
I build it and run in x-code and it spits back:
dyld: Library not loaded: libqextserialport.1.dylib
...
6
votes
4answers
7k views
Relative Paths Not Working in Xcode C++
There are numerous post over the net that detail how relative paths don't work in Xcode. I do have an Xcode template that I downloaded where the relative paths DO work, however I have not been able to ...
6
votes
5answers
20k views
Linking Libraries in Xcode
I'm using a powerbook (osx 10.5) and recently downloaded and installed FFTW 3.2 (link text). I've been able to compile and run some simple programs based on the online tutorial using the terminal:
...
5
votes
2answers
270 views
Boost python on mac os x lion with custom python
I'm trying to get boost python to work with a custom python library. I have a python source and build boost.python using :
./bootstrap.sh --with-python-root=../Python-2.7.2 --with-libraries=python
...
5
votes
3answers
272 views
Xcode to develop for the Arduino
Please read this well to make sure you understand what I want to do.
I DO want Xcode to be able to compile, but only so I can debug in Xcode.
I do NOT want to use Xcode to compile or upload the code ...
5
votes
4answers
1k views
Making a Objective-C Wrapper for a C++ Library
I am trying to make a wrapper in Objective-C so I don't have to write c++ outside the library classes.
The Library main file is LLAHProcessor.h .cpp
My Wrapper is LLAHProcessorWrapper.h .mm
It ...
5
votes
2answers
100 views
A tool to tell you what source files are needed in a C++ project?
I am porting a large, messy, 10 year old cold base in C++ from Metrowerks on OS X to XCode. There are so many files and all the other people that touched this over the years are gone. Nobody know what ...
5
votes
1answer
2k views
is there a way to use c++0x at xcode? I want to use gcc 4.4 or greater
I want to use gcc 4.4 or greater for iphone developement.
anyone know how?
5
votes
4answers
350 views
How to find out where my memory is going
I've got the situation where the cycle of loading and then closing a document eats up a few Mb of RAM. This memory isn't being leaked as something owns it and cleans it up when the app exits (Visual ...
5
votes
2answers
2k views
looser throw specifier for in C++
I am getting an error that says:
error: looser throw specifier for 'virtual CPLAT::CP_Window::~CP_Window()'
On the destructor, I have never heard of this before and some Google Searches say this ...
5
votes
3answers
2k views
C++ Debug builds broke in Snow Leopard X-Code
After upgrading to XCode 3.2 and Snow Leopard, my debug builds are broken and fail at runtime. Stringstreams do not seem to work. They work in Release mode.
I've narrowed it down to a combination ...
5
votes
14answers
3k views
Complete solution for writing Mac OS X application in C++
I am looking for alternatives for my current box and Mac OS X seems very appealing.
My main area of interest is C++ programming. Currently I'm using Eclipse + CDT and g++ for creating my software; ...
5
votes
2answers
4k views
Viewing a dynamically-allocated array with the Xcode debugger?
Let's say I have an array in C++:
double* velocity = new double[100];
Using the GDB command line, I can view this array with the command:
> print *velocity @ 100
and it will print a ...
5
votes
3answers
3k views
C++ odd compile error: error: changes meaning of “Object” from class “Object”
I don't even know where to go with this. Google wasn't very helpful. As with my previous question. I'm using TextMate's Command+R to compile the project.
game.h:16:error: declaration of ‘Player* ...
4
votes
4answers
266 views
Why won't simple inline assembly function work correctly in GCC?
I have a simple inline assembly function, which works fine in MSVC, but for some reason refuses to work under Apple GCC 4.2.1 (i386 arch, forced 32-bit mode). Fortunately, much more complex assembly ...
4
votes
1answer
361 views
Why do I get a faster binary with XCode's llvm vs. clang++ from MacPorts?
I have written a benchmark method to test my C++ program (which searches a game tree), and I am noticing that compiling with the "LLVM compiler 2.0" option in XCode 4.0.2 gives me a significantly ...
4
votes
5answers
260 views
Implicit Template Parameters
The following code generates a compile error in Xcode:
template <typename T>
struct Foo
{
Foo(T Value)
{
}
};
int main()
{
Foo MyFoo(123);
return 0;
}
error: missing ...
4
votes
2answers
592 views
Files in folders not found in iOS app using C++
I'm trying to read files stored in assets folder and its subfolders using std::ifstream in an iOS app written mostly in C++ (The same code is also used in other, non-iOS projects), but they're not ...
4
votes
2answers
667 views
GDB question: Pretty-Printing a 2D Array?
I have a 2d array matrix[10][10] that I'd like to inspect at debug time.
I understand that I can do this in GDB using
p *matrix@10
But it outputs this in one line, making it difficult to read.
Is ...
4
votes
2answers
588 views
Why does this template have an error in Xcode but not Visual Studio?
I am getting an error in Xcode when using templates in C++. Can someone tell me what is wrong?
The first version reports an error in Xcode, but not in Visual Studio.
// Version 1: Error in Xcode, ...
4
votes
1answer
311 views
Objective-C++ pre-compiled headers
I'm using a C++ library (it happens to be in an iPad application, but I'm not sure that should make any difference) and would really like to have the headers pre-compiled to speed up the builds, but ...
4
votes
2answers
199 views
Turn off the warnings due to boost library
I am building an application in C++, Mac OS X, Qt and using boost libraries. Every time i build a project I get a huge list of warnings only from boost libraries itself. I want to turn off them so ...
4
votes
3answers
2k views
C++ compilation for iPhone (STL issue?)
I am trying to compile some C++ code as a static library to use on the iPhone. If I compile things for the simulator (i386 architecture), everything compiles just peachy, but when I switch the ...
4
votes
3answers
504 views
Guides, Tutorials or Books about building MacOSX GUI apps with C++ in Xcode?
with GUI apps I mean not just a Unix command line application, but the whole .app bundle and a full Cocoa or Carbon application.
Thanks!
PS: I wasn't totally accurate with GUI application.
I meant an ...
4
votes
4answers
5k views
vtable for .. referenced from compile error xcode
I was getting the following error compiling and iPhone project. Anybody know how I may fix it?
"vtable for oned::MultiFormatUPCEANReader", referenced from:
...
4
votes
5answers
1k views
Is it possible to customize the indent style of XCode?
For example, I'd like to not indent namespaces in C++ code, but the prefpane doesn't seem to have any place to make a decision of this granularity. Is there some hidden config file or something? Or am ...