fpc/rtl/inc/objc.pp
Jonas Maebe 3b87b10904 * explicitly link libobjc to prevent the symbol __objc_empty_cache from
resolving to CoreFoundation on macOS 10.14 (which will break running
    such programs on older macOS/(Mac) OS X versions)

git-svn-id: trunk@41243 -
2019-02-06 19:48:47 +00:00

23 lines
433 B
ObjectPascal

unit objc;
{$ifdef darwin}
{$define targethandled}
{$linklib objc}
{$if defined(iphonesim) or defined(cpuarm) or defined(cpux86_64) or defined(cpupowerpc64) or defined(cpuaarch64)}
{$i objcnf.inc}
{$endif}
{$if defined(cpupowerpc32) or (defined(cpui386) and not defined(iphonesim))}
{$define targethandled}
{$i objc1.inc}
{$endif}
{$endif}
{$ifndef targethandled}
{$error Target not yet supported for objc.pp unit}
{$endif}