@@ -7,6 +7,20 @@ It follows the Apple "Objective-C 1 Runtime" and [adds many features](//www.mull
7
7
from "Objective-C 2.0", but the runtime function calls are completely different.
8
8
It is designed to be suitable for massive multi-threading.
9
9
10
+ The runtime builds at least on the following platform/compiler combinations:
11
+
12
+ | OS | Compiler | Flags
13
+ |----------|------------|--------
14
+ | Ubuntu | GCC |   ;
15
+ | Ubuntu | GCC | -O3
16
+ | Ubuntu | Clang |   ;
17
+ | Ubuntu | Clang | Debug
18
+ | Windows | MSVC Win32 |   ;
19
+ | Windows | MSVC Win64 |   ;
20
+ | Windows | GCC |   ;
21
+ | macOS | Clang |   ;
22
+ | macOS | GCC |   ;
23
+
10
24
11
25
12
26
| Release Version | Release Notes | AI Documentation
@@ -131,8 +145,8 @@ As long as your sources are using `#include "include-private.h"` and your header
131
145
mulle-sde add github:mulle-objc/mulle-objc-runtime
132
146
```
133
147
134
- To only add the sources of mulle-objc-runtime with dependency
135
- sources use [ clib] ( https://github.com/clibs/clib ) :
148
+ To only add the sources of mulle-objc-runtime with all the sources of its
149
+ dependencies replace "github:" with [ clib: ] ( https://github.com/clibs/clib ) :
136
150
137
151
## Legacy adds
138
152
@@ -218,17 +232,17 @@ Download the latest [tar](https://github.com/mulle-objc/mulle-objc-runtime/archi
218
232
Install ** mulle-objc-runtime** into ` /usr/local ` with [ cmake] ( https://cmake.org ) :
219
233
220
234
``` sh
221
- export MULLE_SDK_PATH=" /usr/local" # important!
222
- cmake -B build \
223
- -DCMAKE_INSTALL_PREFIX=" ${MULLE_SDK_PATH} " \
224
- -DCMAKE_PREFIX_PATH=" ${MULLE_SDK_PATH} " \
235
+ PREFIX_DIR=" /usr/local"
236
+ cmake -B build \
237
+ -DMULLE_SDK_PATH=" ${PREFIX_DIR} " \
238
+ -DCMAKE_INSTALL_PREFIX=" ${PREFIX_DIR} " \
239
+ -DCMAKE_PREFIX_PATH=" ${PREFIX_DIR} " \
225
240
-DCMAKE_BUILD_TYPE=Release &&
226
241
cmake --build build --config Release &&
227
242
cmake --install build --config Release
228
243
```
229
244
230
245
231
-
232
246
## Author
233
247
234
248
[ Nat!] ( https://mulle-kybernetik.com/weblog ) for Mulle kybernetiK
0 commit comments