That is an asm.js validation error, which means that the code is running without asm.js ahead of time compilation. This causes potentially a large performance hit, but should otherwise work. Does it tell the file:line where that occurs? To debug, you need to figure out if it's compiler-generated JS code that's causing the failure, or something that you wrote manually and injected somehow into the asm.js part of the generated code. The particular error means that some computation returned the 'intish' type, and it was not casted back to a specific type like int with |0, iirc.
2014-02-13 16:22 GMT+02:00 caiiiycuk <[email protected]>: > After compiling opendune in FF i have message: > TypeError: asm.js type error: intish is not a subtype of int > > All works, but what does it mean? > > -- > You received this message because you are subscribed to the Google Groups > "emscripten-discuss" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "emscripten-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
