Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion build_x64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ cd ${MY_X64}/speex-*
./configure --prefix=/mingw/x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --disable-shared --enable-sse
make clean && make && make install-strip

#Compiling lamemp3
cd ${MY_X64}/lame-*
./configure --prefix=/mingw/x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --disable-shared
make clean && make && make install-strip

#Compiling openjpeg
# note:
# Compiling openjpeg is weird.
Expand Down Expand Up @@ -94,4 +99,4 @@ PKG_CONFIG_PATH=/mingw/x86_64-w64-mingw32/lib/pkgconfig/ \
--enable-libx264 --disable-hwaccels --cpu=x86_64 --disable-debug \
--extra-cflags=-fno-strict-aliasing
make clean && make && make install
cp /mingw/x86_64-w64-mingw32/bin/ffmpeg.exe /usr/local/bin/ffmpeg_x64_${FFMPEGVER}.exe
cp /mingw/x86_64-w64-mingw32/bin/ffmpeg.exe /usr/local/bin/ffmpeg_x64_${FFMPEGVER}.exe
7 changes: 6 additions & 1 deletion build_x86.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@ cd ${MY_X86}/speex-*
./configure --prefix=/mingw/i686-pc-mingw32 --disable-shared --enable-sse
make clean && make && make install-strip

#Compiling lamemp3
cd &{MY_X86}/lame-*
./configure --prefix=/mingw/i686-pc-mingw32 --disable-shared
make clean && make && make install-strip

#Compiling openjpeg
# note:
# Compiling openjpeg is weird.
Expand Down Expand Up @@ -103,4 +108,4 @@ make clean && make && make install
for i in ffmpeg ffplay ffprobe
do
cp /mingw/i686-pc-mingw32/bin/${i}.exe /usr/local/bin/${i}_x86_${FFMPEGVER}.exe
done
done