diff options
author | Shih-wei Liao <sliao@google.com> | 2012-05-09 18:53:32 -0700 |
---|---|---|
committer | Shih-wei Liao <sliao@google.com> | 2012-05-09 18:53:32 -0700 |
commit | 25cfae268a7557246cffec2e4793113e38b4da94 (patch) | |
tree | 4843332610c20b502d0210e3c15ba2d625174da9 /host | |
parent | cea6fb5f1c653e52528f26a8a77fc912b7ed012d (diff) | |
download | external_llvm-25cfae268a7557246cffec2e4793113e38b4da94.zip external_llvm-25cfae268a7557246cffec2e4793113e38b4da94.tar.gz external_llvm-25cfae268a7557246cffec2e4793113e38b4da94.tar.bz2 |
Fix Mac breakage due to not HAVE_MALLINFO.
Error message was:
external/llvm/lib/Support/Unix/Process.inc:90: error: ‘::mallinfo’ has
not been declared
Change-Id: Icc3bf1f828426c08b3b1db134ef5337b40b271af
Diffstat (limited to 'host')
-rw-r--r-- | host/include/llvm/Config/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/llvm/Config/config.h b/host/include/llvm/Config/config.h index 67e1363..c008ed2 100644 --- a/host/include/llvm/Config/config.h +++ b/host/include/llvm/Config/config.h @@ -230,7 +230,7 @@ /* #undef HAVE_MACH_O_DYLD_H */ /* Define if mallinfo() is available on this platform. */ -#define HAVE_MALLINFO 1 +/* #undef HAVE_MALLINFO */ /* Define to 1 if you have the <malloc.h> header file. */ /* #define HAVE_MALLOC_H 1 */ /* Defined by AndroidConfig.h */ |