diff --git a/wscript b/wscript index 52226427..e739bc84 100644 --- a/wscript +++ b/wscript @@ -191,9 +191,6 @@ def options(opt): grp.add_option('--enable-fuzzer', action = 'store_true', dest = 'ENABLE_FUZZER', default = False, help = 'enable building libFuzzer runner [default: %(default)s]' ) - grp.add_option('--enable-emscripten', action = 'store_true', dest = 'ENABLE_EMSCRIPTEN', default = False, - help = 'enable emscripten support [default: %(default)s]' ) - for i in SUBDIRS: if not i.is_exists(opt): continue @@ -255,10 +252,6 @@ def configure(conf): conf.options.GLES3COMPAT = True conf.options.GL = False - if conf.options.ENABLE_EMSCRIPTEN: - conf.options.GLES3COMPAT = True - conf.options.GL = False - # psvita needs -fPIC set manually and static builds are incompatible with -fPIC enforce_pic = conf.env.DEST_OS != 'psvita' and not conf.env.STATIC_LINKING conf.check_pic(enforce_pic)