I'm trying to create a universal iPhone app, but it uses a class defined only in a newer version of …
ios backwards-compatibility weak-linkingGCC has the ability to make a symbol link weakly via __attribute__((weak)). I want to use the a weak …
c++ c visual-studio gcc weak-linkingIn Xcode, I can set a framework to "Optional" instead of "Required", which then means the framework is weak linked. …
ios xcode frameworks weak-linkingMy problem can be summarised in the following: bar.c: #include <stdio.h> void bar() { printf("bar\n"); } …
c gcc ld weak-linkingI need to weak link some framework with my target. But I can't find how to do it... If I …
objective-c xcode frameworks weak-linking ios-frameworksLet's say in Apple API version 1.0, there is a class NSFoo with a property 'color'. API 1.1 adds property 'size'. I …
objective-c properties weak-linkingI'm having trouble with using a library that contains weak-symbols and the --as-needed linker flag. Example (This uses the Jack …
gcc linker jack weak-linkingIn brief: does LLVM/Clang support the 'weak' attribute? I'm learning some Arduino library sources (HardwareSerial.cpp to be more …
c++ linker clang llvm weak-linkingAnalyzing this question I found out some things about behavior of weak symbol resolution in the context of dynamic loading (…
linux dynamic-linking dynamic-loading symbol-table weak-linkingI want to use Twitter framework for iOS 5, but be able to run my app in older OS. I added …
objective-c ios frameworks xcode4.2 weak-linking