diff options
author | Johannes Schickel | 2014-01-23 15:23:12 -0800 |
---|---|---|
committer | Johannes Schickel | 2014-01-23 15:23:12 -0800 |
commit | 2fe303ce3fff008a58e9750c66e707ec4e7c93d8 (patch) | |
tree | f4ba16f62f0a054c596d65dd8796ef7323a6b535 /Makefile | |
parent | 29eeb91d4e0f7862815cd3129441ba3dfeee85c1 (diff) | |
parent | a7f94591b03984978b77bad069a2456417b55df9 (diff) | |
download | scummvm-rg350-2fe303ce3fff008a58e9750c66e707ec4e7c93d8.tar.gz scummvm-rg350-2fe303ce3fff008a58e9750c66e707ec4e7c93d8.tar.bz2 scummvm-rg350-2fe303ce3fff008a58e9750c66e707ec4e7c93d8.zip |
Merge pull request #409 from lordhoto/rtti
Enable RTTI and clean up the code by exploiting the availability of dynamic_cast.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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" |