summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2010-06-24 10:48:27 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2010-06-24 10:48:27 +0200
commita80fd59e3b3b18116803a14e6369345933994236 (patch)
tree8d79641a5759b805074e59c517f5ea75c7f5e2ef
parentf0dcb906fe56b5dc06aa305b6cfc821d5dd25a28 (diff)
Fix crashes at run-time with RVCT compiled code
Disable data structure packaging with RVCT, it appears to miscompile. Signed-off-by: Anreas Kling <andreas.kling@nokia.com>
-rw-r--r--src/harfbuzz-global.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/harfbuzz-global.h b/src/harfbuzz-global.h
index 5b2b679..bccd6a2 100644
--- a/src/harfbuzz-global.h
+++ b/src/harfbuzz-global.h
@@ -39,7 +39,7 @@
#define HB_END_HEADER /* nothing */
#endif
-#if defined(__GNUC__) || defined(__ARMCC__) || defined(__CC_ARM) || defined(_MSC_VER)
+#if defined(__GNUC__) || defined(_MSC_VER)
#define HB_USE_PACKED_STRUCTS
#endif