]> git.saurik.com Git - android/aapt.git/commitdiff
Fix "Too many open files" error for aapt built with Mac OS X SDK 10.6.
authorYing Wang <wangying@google.com>
Thu, 31 May 2012 01:02:55 +0000 (18:02 -0700)
committerJean-Baptiste Queru <jbq@google.com>
Tue, 5 Jun 2012 21:30:39 +0000 (14:30 -0700)
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

Android.mk

index cb55a9cfd4d688ff9974460b0e4b61927f12964c..eeddd4b0a5b6b06ad9d8482b0626b46ac41a710f 100644 (file)
@@ -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