mirror of
https://github.com/darlinghq/darling-objc4.git
synced 2024-11-26 21:50:26 +00:00
11 lines
307 B
C
11 lines
307 B
C
// unload3: contains imageinfo but no other objc metadata
|
|
// libobjc must not keep it open
|
|
|
|
#include <TargetConditionals.h>
|
|
|
|
int fake[2] __attribute__((section("__DATA,__objc_imageinfo")))
|
|
= { 0, TARGET_OS_SIMULATOR ? (1<<5) : 0 };
|
|
|
|
// silence "no debug symbols in executable" warning
|
|
void fn(void) { }
|