diff options
| author | 2012-05-30 18:02:55 -0700 | |
|---|---|---|
| committer | 2012-06-05 14:30:39 -0700 | |
| commit | 41bdb03ffb81d7bcbf6fa35d7b40e196635c86f3 (patch) | |
| tree | 5eedea44e81362a897f143d2c43bbc60f669b370 /tools | |
| parent | 36ac43ba9982a78b4a047c8970776505a3fab4da (diff) | |
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
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/aapt/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/aapt/Android.mk b/tools/aapt/Android.mk index cb55a9cfd4d6..eeddd4b0a5b6 100644 --- a/tools/aapt/Android.mk +++ b/tools/aapt/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 |