Overview
| Comment: | Add a note about Xcode 4 to README. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
eccad61ee22817547e67164ff26b29b4 |
| User & Date: | js on 2011-03-21 16:39:32 |
| Other Links: | manifest | tags |
Context
|
2011-03-21
| ||
| 16:59 | Update .hgignore for Xcode 4. (check-in: ea8c3f76f0 user: js tags: trunk) | |
| 16:39 | Add a note about Xcode 4 to README. (check-in: eccad61ee2 user: js tags: trunk) | |
| 16:33 | Get list of supported archs from Xcode. (check-in: 03ae88353e user: js tags: trunk) | |
Changes
Modified README from [a3f50ad1a1] to [2bffcb61ce].
| ︙ | ︙ | |||
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
USING THE MAC OS X FRAMWORK IN XCODE
To use the Mac OS X framework in Xcode, you need to add the .framework
to your project and add the following flags to "Other C Flags":
-fconstant-string-class=OFConstantString -fno-constant-cfstrings
Optionally, if you want to use blocks, you also need to add:
-fblocks
BUGS AND FEATURE REQUESTS
If you find any bugs or have feature requests, feel free to send a
mail to js-spam@webkeks.org (remove -spam from the address!).
| > > > > | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
USING THE MAC OS X FRAMWORK IN XCODE
To use the Mac OS X framework in Xcode, you need to add the .framework
to your project and add the following flags to "Other C Flags":
-fconstant-string-class=OFConstantString -fno-constant-cfstrings
Additionally, since Xcode 4, you need to manually set the compiler to GCC
or LLVM-GCC due to bugs in Clang on OS X with using a different constant
string class.
Optionally, if you want to use blocks, you also need to add:
-fblocks
BUGS AND FEATURE REQUESTS
If you find any bugs or have feature requests, feel free to send a
mail to js-spam@webkeks.org (remove -spam from the address!).
|