diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-31 18:24:27 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-09-03 14:41:31 -0700 |
commit | aa77d85a532f573672176fd8a2fb42b406e0e711 (patch) | |
tree | 500528159824e181abd4dc52c80006829b6746cf /emcc | |
parent | 55e7a901112249ba6b8e932fd46c5136b29f2196 (diff) |
remove unneeded settings from DLOPEN_SUPPORT
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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') |