aboutsummaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-08-31 18:24:27 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-09-03 14:41:31 -0700
commitaa77d85a532f573672176fd8a2fb42b406e0e711 (patch)
tree500528159824e181abd4dc52c80006829b6746cf /emcc
parent55e7a901112249ba6b8e932fd46c5136b29f2196 (diff)
remove unneeded settings from DLOPEN_SUPPORT
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc6
1 files changed, 0 insertions, 6 deletions
diff --git a/emcc b/emcc
index d5dff4bb..9cefa742 100755
--- a/emcc
+++ b/emcc
@@ -1104,12 +1104,6 @@ try:
shared.Settings.LINKABLE = 1 # TODO: add FORCE_DCE option for the brave people that do want to dce here and in side modules
debug_level = max(debug_level, 2)
- if shared.Settings.DLOPEN_SUPPORT:
- if shared.Settings.ALIASING_FUNCTION_POINTERS:
- logging.warning('disabling ALIASING_FUNCTION_POINTERS for dlopen support')
- shared.Settings.ALIASING_FUNCTION_POINTERS = 0
- shared.Settings.RESERVED_FUNCTION_POINTERS = max(shared.Settings.RESERVED_FUNCTION_POINTERS, 10)
-
if shared.Settings.ASSERTIONS and shared.Settings.ALIASING_FUNCTION_POINTERS:
logging.warning('ALIASING_FUNCTION_POINTERS is on, function pointer comparisons may be invalid across types')