From: Ying Wang Date: Thu, 31 May 2012 01:02:55 +0000 (-0700) Subject: Fix "Too many open files" error for aapt built with Mac OS X SDK 10.6. X-Git-Url: https://git.saurik.com/android/aapt.git/commitdiff_plain/293395f85715007b05ab8b00223820d222c69cbd Fix "Too many open files" error for aapt built with Mac OS X SDK 10.6. With SDK 10.6 without _DARWIN_UNLIMITED_STREAMS aapt sometimes fails right away with the error "Too many open files" when calling fopen(). Change-Id: Ifa7bd8a9530d706aa47f98be8186f1aefe943d76 --- diff --git a/Android.mk b/Android.mk index cb55a9c..eeddd4b 100644 --- a/Android.mk +++ b/Android.mk @@ -29,6 +29,10 @@ LOCAL_SRC_FILES := \ LOCAL_CFLAGS += -Wno-format-y2k +ifeq (darwin,$(HOST_OS)) +LOCAL_CFLAGS += -D_DARWIN_UNLIMITED_STREAMS +endif + LOCAL_C_INCLUDES += external/expat/lib LOCAL_C_INCLUDES += external/libpng