BUILD: Enable RTTI again.

This commit is contained in:
Johannes Schickel 2013-10-23 23:45:29 +02:00
parent 092d36f392
commit 2df57c17e5

View File

@ -33,8 +33,9 @@ ifeq "$(HAVE_GCC)" "1"
#CXXFLAGS+= -Wmissing-format-attribute
ifneq "$(BACKEND)" "tizen"
# Disable RTTI and exceptions. These settings cause tizen apps to crash
CXXFLAGS+= -fno-rtti -fno-exceptions
# Disable exceptions. This setting causes tizen apps to crash
# TODO: Does this still apply after enabling RTTI again?
CXXFLAGS+= -fno-exceptions
endif
ifneq "$(HAVE_CLANG)" "1"