Where can I download the open source kernel?

Where should I download the base foundation library? I have a program that includes CoreFoundation / CoreFoundation.h ... This is an application for the iPhone, but I think the base code will work on Linux.

+6
source share
1 answer

All Apple open source code can be found at http://opensource.apple.com/ . The source code for Core Foundation (actually, "CFLite") can be found at http://www.opensource.apple.com/source/CF/CF-635.19/ and can be downloaded from http://www.opensource.apple .com / tarballs / CF / CF-635.19.tar.gz .

The README file describes how to create a library on Linux. Please note that the full Core Foundation is not available.

The CFLite version for Mac OS X supports most of the full CoreFoundation features. The Linux version of CFLite focuses on strings, dates, collections, and other items associated with a property list.

+14
source

Source: https://habr.com/ru/post/912136/


All Articles