我正在尝试使用Emscripten编译一个开放源代码库,并做了一些小的更改后就可以编译并运行它,但是当我尝试过多使用它时,我会得到:
segmentation fault, exceeded the top of the available dynamic heap when loading 1 bytes from address 1869770797. STATICTOP=184544, DYNAMICTOP=21213184 melt.html:1246:11
exception thrown: abort("segmentation fault, exceeded the top of the available dynamic heap when loading 1 bytes from address 1869770797. STATICTOP=184544, DYNAMICTOP=21213184") at jsStackTrace@http://localhost:6931/melt.js:1603:13
stackTrace@http://localhost:6931/melt.js:1620:12
abort@http://localhost:6931/melt.js:52047:44
SAFE_HEAP_LOAD@http://localhost:6931/melt.js:926:51
_strcmp@http://localhost:6931/melt.wasm:wasm-function[912]:0x67c58
但是我真的不认为它应该使用那么多的内存吗?用Emscripten在浏览器中调试此类内存问题的最佳方法是什么?
由于堆栈信息有点糟透了,我似乎甚至找不到失败的确切“ strcmp”调用。
如果我在没有-s SAFE_HEAP=1
的情况下进行编译,则错误将通过以下方式出现:
exception thrown: RuntimeError: index out of bounds,_strcmp@http://localhost:6931/melt.wasm:wasm-function[771]:0x34dcf
Module._strcmp@http://localhost:6931/melt.js:50463:10
我要编译的库是MLT框架(https://github.com/mltframework/mlt)
这有点复杂,而且它使用动态链接来加载其大多数功能-现在,我正试图使它以绝对最小值运行-mltframework本身(静态链接到可执行文件),libmltcore(通过dlload),libmltsdl2(通过dlload加载)
对于MLT本身,其编译标志如下(使用WASM = 0,但WASM似乎没有什么不同):
emcc -g -s WASM=0 -dynamiclib -current_version 6.14.0
-compatibility_version 6
-o ../../../lib/libmlt.bc
mlt_frame.o mlt_version.o mlt_geometry.o mlt_deque.o mlt_property.o mlt_properties.o mlt_events.o mlt_parser.o mlt_service.o mlt_producer.o mlt_multitrack.o mlt_playlist.o mlt_consumer.o mlt_filter.o mlt_transition.o mlt_field.o mlt_tractor.o mlt_factory.o mlt_repository.o mlt_pool.o mlt_tokeniser.o mlt_profile.o mlt_log.o mlt_cache.o mlt_animation.o mlt_slices.o
-lpthread -lm
libmltcore:
emcc -g -s EXPORT_ALL=1 -s WASM=0 -s SIDE_MODULE=1 -dynamiclib
-o ../../../../lib/mlt/libmltcore.js
factory.o producer_colour.o producer_consumer.o producer_hold.o producer_loader.o producer_melt.o producer_noise.o producer_timewarp.o producer_tone.o filter_audiochannels.o filter_audiomap.o filter_audioconvert.o filter_audiowave.o filter_brightness.o filter_channelcopy.o filter_crop.o filter_data_feed.o filter_data_show.o filter_fieldorder.o filter_gamma.o filter_greyscale.o filter_imageconvert.o filter_luma.o filter_mirror.o filter_mono.o filter_obscure.o filter_panner.o filter_region.o filter_rescale.o filter_resize.o filter_transition.o filter_watermark.o transition_composite.o transition_luma.o transition_mix.o transition_region.o transition_matte.o consumer_multi.o consumer_null.o
-L../../framework -lmlt -lm -lpthread
litmltsdl2:
emcc -g -s EXPORT_ALL=1 -s SIDE_MODULE=1 -s WASM=0 -dynamiclib
-o ../../../../lib/mlt/libmltsdl2.js
factory.o common.o consumer_sdl2.o consumer_sdl2_audio.o
-L../../framework -lmlt -lpthread -lm -s USE_SDL=2
最后是我的可执行文件:
emcc -g -s SAFE_HEAP=1 -s WASM=0 -s TOTAL_MEMORY=1024MB -s EXIT_RUNTIME=1 -s EXPORT_ALL=1 -s MAIN_MODULE=1
-O2 -I$(pwd)/dist/include/mlt $(pwd)/dist/lib/libmlt.bc
--preload-file lib/mlt
--preload-file lib/share
melt.c -o melt.html --pre-js melt_pre.js
我尝试了其他各种标志:
ALIASING_FUNCTION_POINTERS=0
SAFE_HEAP=1
STACK_OVERFLOW_CHECK=1
EMULATE_FUNCTION_POINTER_CASTS=1
ASSERTIONS=2
-g4似乎很有帮助,但是在构建库时tt无法找到源文件。
答案 0 :(得分:0)
值得一看at the full list and descriptions of emcc compiler options。阅读链接中的描述后,您将意识到提到的所有其他标志都不会帮助您解决问题。
首先,我非常确定您不能对MB
标志使用-s TOTAL_MEMORY=
表示法,因为如上所述,-s
标志实际上是JavaScript。尝试改用普通整数。此外,-s ALLOW_MEMORY_GROWTH=1
将使堆根据需要自动增长。
请注意,pthread默认情况下在某些浏览器中不可用,因为它(精确地{SharedArrayBuffer
)受Meltdown漏洞影响,因此在浏览器中被禁用。