Greetings,
I am trying to compile
an old project from GitHub which uses emscripten, and
the makefile calls emcc with a
-s USE_ASM=1 flag. I am then presented with the following when trying the
workers part of the makefile:
WARNING root: Assigning a non-existent settings attribute "USE_ASM"
WARNING root: - did you mean one of USE_BSS, USE_FHEAP?
WARNING root: - perhaps a typo in emcc's -s X=Y notation?
WARNING root: - (see src/settings.js for valid values)
I have looked for such a setting in emscripten's current and old versions, including in src/settings.js of course, but with no success. Additionally, make fails with this:
Traceback (most recent call last):
File "/usr/bin/emcc", line 1274, in <module>
exec('shared.Settings.' + key + ' = ' + value)
File "<string>", line 1, in <module>
NameError: name '_malloc' is not defined
Makefile:10: recipe for target 'workers' failed
make: *** [workers] Error 1
I would be forever grateful to anyone helping me compile this project. I only wish to compile it again so I can use a -O3 optimization...
Thank you very much for reading!