Why is my app running
Posted
by John Smith
on Stack Overflow
See other posts from Stack Overflow
or by John Smith
Published on 2010-04-28T14:21:51Z
Indexed on
2010/04/28
18:17 UTC
Read the original article
Hit count: 436
I have compiled my iPhone app with setting (Device, Release).
I install it on the test machine and it runs with no problem.
Here's the problem. The app is linked to a C++ library. The compilation on the simulator has no errors. However the device compilation produces 568 errors, mostly about different visibilities w.r.t AppDelegate.o.
They all look like:
QL::Error::~Error()has different visibility (default) in /QL/build/Release-iphoneos/libQLLibrary.a(abcd.o) and (hidden) in /Programming/ObjC/Second/build/Second.build/Release-iphoneos/FG.build/Objects-normal/armv6/AppDelegate.o
Why is this, and how can I stop the errors anyway?
© Stack Overflow or respective owner