diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-04 17:16:11 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-06-05 02:31:39 +0200 |
commit | 9fa78ca99e32c0f27b6071cc2ddffdf43cb9b9d4 (patch) | |
tree | d7f1f6aa6f22d61904db5cfef479d299b4f746f0 /README | |
parent | 5167dad198508e2dac10bf89c6b2991cfc791ee6 (diff) | |
download | sciteco-9fa78ca99e32c0f27b6071cc2ddffdf43cb9b9d4.tar.gz |
use memory polling (--disable-malloc-replacement) on Mac OS X
* I could not get malloc replacement via dlmalloc to work.
This does not work like on Linux by overwriting weak malloc() functions.
It should theoretically be possible to overwrite the default malloc zone
but I could not properly debug this since I can only build for Mac OS
via CI.
* memory polling seems to work though - test suite runs through
and it includes memory limiting test cases.
Diffstat (limited to 'README')
-rw-r--r-- | README | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -28,10 +28,11 @@ Others might work as well. Linux, FreeBSD, Windows (MinGW 32/64) ~~and [Haiku](https://www.haiku-os.org/) (gcc4)~~ are tested and supported. +Mac OS X is built during Continuous Integration but is otherwise untested +and packages also cannot be provided. +(I am looking for a Mac OS X maintainer!) SciTECO compiles with both GCC and Clang. -SciTECO should compile just fine on other UNIX-compatible platforms, -like Mac OS X - however I cannot test it regularily and there is currently no -Mac OS X maintainer. +SciTECO should compile just fine on other UNIX-compatible platforms. However UNIX-compatibility is not strictly required: Since SciTECO primarily depends on [glib](https://developer.gnome.org/glib/) and some implementation of Curses, it should be easy to port to even more exotic platforms. |