diff options
author | Valerii Hiora <valerii.hiora@gmail.com> | 2014-05-16 13:28:20 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2014-06-04 15:38:40 (GMT) |
commit | 5921ba7b0c3b3278c54d569dee37deab2768b70b (patch) | |
tree | 000b35baed17f0b173fdef47746e41a346ead768 | |
parent | 8f50ec8eda262e87ad547ec50b6ca928ea3e31c4 (diff) | |
download | jemalloc-5921ba7b0c3b3278c54d569dee37deab2768b70b.zip jemalloc-5921ba7b0c3b3278c54d569dee37deab2768b70b.tar.gz jemalloc-5921ba7b0c3b3278c54d569dee37deab2768b70b.tar.bz2 |
Support for iOS compilation
-rwxr-xr-x | config.sub | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1400,6 +1400,8 @@ case $os in -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; + -ios*) + ;; -linux-dietlibc) os=-linux-dietlibc ;; diff --git a/configure.ac b/configure.ac index e977534..48863a5 100644 --- a/configure.ac +++ b/configure.ac @@ -264,7 +264,7 @@ dnl definitions need to be seen before any headers are included, which is a pain dnl to make happen otherwise. default_munmap="1" case "${host}" in - *-*-darwin*) + *-*-darwin* | *-*-ios*) CFLAGS="$CFLAGS" abi="macho" AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ]) |