Bug 795594 - Add workaround for MSVC x64 compiler bug. r=roc

This commit is contained in:
Makoto Kato 2012-10-10 15:17:30 +09:00
parent f7560ac779
commit e9fdc697d8

View File

@ -195,3 +195,11 @@ LOCAL_INCLUDES += \
$(NULL)
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
ifdef _MSC_VER
ifeq ($(CPU_ARCH),x86_64)
# Workaround compiler bug (Bug 795594)
LayerTreeInvalidation.$(OBJ_SUFFIX): CXXFLAGS += -GL-
Layers.$(OBJ_SUFFIX): CXXFLAGS += -GL-
endif
endif