summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-31 22:09:32 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-31 22:09:32 +0000
commit5c0a389532ffd5e6ec82bb12178c7537b0481044 (patch)
tree22a962a4ab46ae4d2d5e38ebf638adb8ada521e8 /oox
parent634820b3a8604dd1ed868ddeffc2501f3a0f056f (diff)
use a $(COM)-$(OS)-$(CPUNAME) pattern
i.e. same pattern as sc/Library_vbaobj.mk and writerfilter/Library_resourcemodel.mk and document that its a compile time error which can be retested anytime with a new toolchain, not some weird scary runtime error so must never be touched.
Diffstat (limited to 'oox')
-rw-r--r--oox/Library_oox.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/oox/Library_oox.mk b/oox/Library_oox.mk
index 089605daa527..6e4b60ef7398 100644
--- a/oox/Library_oox.mk
+++ b/oox/Library_oox.mk
@@ -40,7 +40,10 @@ $(eval $(call gb_Library_set_include,oox,\
-I$(realpath $(SRCDIR)/oox/inc) \
))
-ifeq ($(CPUNAME),IA64)
+ifeq ($(COM)-$(OS)-$(CPUNAME),GCC-LINUX-IA64)
+#Debian Linux ia64 fails at compile time on
+#oox/source/drawingml/customshapepresets*.cxx which are apparently too large
+#for the toolchain to handle with default optimization
$(eval $(call gb_Library_add_cxxflags,oox,\
-Os \
))