You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,14 +98,22 @@ $ make check # runs the standard tests
98
98
99
99
### On MacOS Systems
100
100
101
-
Due to some library incompatibilities, the surefire way to build kscript on MacOS is:
101
+
The simplest way is to just build like this:
102
102
103
103
```shell
104
-
$ ./configure --with-ffi off --with-readline off
104
+
$ ./configure
105
105
$ make bin/ks -j16
106
106
```
107
107
108
-
Some builds (external shared libraries, extra modules) may not work directly (TODO/WIP), but the basic functionality and the standard library should work just fine
108
+
If you install `libffi`, you can build with FFI support like this:
0 commit comments