Compare commits

...

2 Commits

Author SHA1 Message Date
73cb05f572 fix: replace deprecated flag to supported version
Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
2026-02-19 09:50:26 +01:00
3b2c5877ad fix: use versioned llvm binaries
Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
2026-02-19 09:49:32 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -87,10 +87,10 @@ RUN emconfigure ./configure \
--extra-cflags="$CFLAGS" \ --extra-cflags="$CFLAGS" \
--extra-cxxflags="$CFLAGS" \ --extra-cxxflags="$CFLAGS" \
--extra-ldflags="$LDFLAGS" \ --extra-ldflags="$LDFLAGS" \
--nm="llvm-nm -g" \ --nm="llvm-nm-20 -g" \
--ar=emar \ --ar=emar \
--as=llvm-as \ --as=llvm-as \
--ranlib=llvm-ranlib \ --ranlib=llvm-ranlib-20 \
--cc=emcc \ --cc=emcc \
--cxx=em++ \ --cxx=em++ \
--objcc=emcc \ --objcc=emcc \

View File

@@ -4,7 +4,7 @@ dist/ffprobe-wasm.js:
-O3 \ -O3 \
-L/opt/ffmpeg/lib \ -L/opt/ffmpeg/lib \
-I/opt/ffmpeg/include/ \ -I/opt/ffmpeg/include/ \
-s EXTRA_EXPORTED_RUNTIME_METHODS="[FS, cwrap, ccall, getValue, setValue, writeAsciiToMemory]" \ -s EXPORTED_RUNTIME_METHODS="[FS, cwrap, ccall, getValue, setValue, writeAsciiToMemory]" \
-s INITIAL_MEMORY=268435456 \ -s INITIAL_MEMORY=268435456 \
-lavcodec -lavformat -lavfilter -lavdevice -lswresample -lswscale -lavutil -lm -lx264 \ -lavcodec -lavformat -lavfilter -lavdevice -lswresample -lswscale -lavutil -lm -lx264 \
-pthread \ -pthread \