Commit ae99c7c8 authored by Jerome Wu's avatar Jerome Wu

Fix syntax error

parent 1f627838
...@@ -4,18 +4,20 @@ ...@@ -4,18 +4,20 @@
emcc -v emcc -v
# configure FFmpeg with Emscripten # configure FFmpeg with Emscripten
emconfigure ./configure \ FLAGS=(
--disable-x86asm \ --disable-x86asm
--disable-inline-asm \ # Disable inline asm --disable-inline-asm #Disable inline asm
--disable-doc \ # Disable document generation --disable-doc #Disable document generation
--nm="llvm-nm -g" \ --nm="llvm-nm -g"
--ar=emar \ --ar=emar
--as=llvm-as \ --as=llvm-as
--ranlib=llvm-ranlib \ --ranlib=llvm-ranlib
--cc=emcc \ --cc=emcc
--cxx=em++ \ --cxx=em++
--objcc=emcc \ --objcc=emcc
--dep-cc=emcc --dep-cc=emcc
)
emconfigure ./configure "${FLAGS[@]}"
# build FFmpeg.wasm # build FFmpeg.wasm
emmake make -j emmake make -j
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment