-
-
Notifications
You must be signed in to change notification settings - Fork 335
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wasm-ld: error: unknown file type: build/ffmpeg-webm/ffmpeg.bc #148
Comments
Turns out, wasm-ld is expected to be called even with WASM=0, but ffmpeg.bc was not expected to be a JavaScript file. There was some change to emcc. To produce an object file, the Thanks to sbc on the WebAssembly channel on Discord for the help on this. |
still get error like this: nm: /tmp/ffconf.bMB3JO1u/test.o: file format not recognized If you think configure made a mistake, make sure you are using the latest @erisco do you know why? |
so, what's the final solution? anyone help? I meet the same issue. wasm-ld: error: unknown file type: build/ffmpeg-webm/ffmpeg.bc
I already put the exesuf=.bc there |
Same question. Anyone know what to do here? |
#149 this patch fix this issue |
It seems to me like emcc is trying to build ffmpeg.bc as WASM even though
-s WASM=0
is set. I have tried:-s WASM_ASYNC_COMPILATION=0
The text was updated successfully, but these errors were encountered: