mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00

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 -
23 lines
433 B
ObjectPascal
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}
|