Como eu compilo FFMPEG & Libaom sem TORTA

3

Eu estou tentando compilar FFMPEG e Libaom do código aparentemente porque os compiladores gcc e g ++ no Ubuntu 18.04 por padrão ativaram a seguinte opção por padrão: --enable-default-pie

$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.3.0-16ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --with-as=/usr/bin/x86_64-linux-gnu-as --with-ld=/usr/bin/x86_64-linux-gnu-ld --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.3.0 (Ubuntu 7.3.0-16ubuntu3)

Eu tentei passar um --extra-ldexeflags="-no-pie -fno-pic -fno-pie" , mas isso não ajudou. Eu tenho o mesmo problema ao tentar compilar a libaom. Eu tentei instalar uma versão mais antiga do gcc, mas mesmo 5.X tem essa opção --enable-default-pie habilitada por padrão, então não é bom. Aparentemente, esta opção foi forçada no Ubuntu 18.04 e não há maneira de contornar isso.

Esse é o meu erro ao tentar instalar a libaom:

64%] Linking CXX executable examples/decode_with_drops
/usr/bin/x86_64-linux-gnu-ld: libaom.a(fwd_txfm_ssse3_x86_64.asm.o): relocation R_X86_64_32 against '.rodata' can not be used when making a PIE object; recompile with -fPIC
/usr/bin/x86_64-linux-gnu-ld: libaom.a(quantize_ssse3_x86_64.asm.o): relocation R_X86_64_32 against '.rodata' can not be used when making a PIE object; recompile with -fPIC
/usr/bin/x86_64-linux-gnu-ld: libaom.a(subpel_variance_sse2.asm.o): relocation R_X86_64_32 against '.rodata' can not be used when making a PIE object; recompile with -fPIC
/usr/bin/x86_64-linux-gnu-ld: libaom.a(highbd_subpel_variance_impl_sse2.asm.o): relocation R_X86_64_32 against '.rodata' can not be used when making a PIE object; recompile with -fPIC
/usr/bin/x86_64-linux-gnu-ld: final link failed: Nonrepresentable section on output
collect2: error: ld returned 1 exit status
CMakeFiles/decode_with_drops.dir/build.make:155: recipe for target 'examples/decode_with_drops' failed
make[2]: *** [examples/decode_with_drops] Error 1
CMakeFiles/Makefile2:936: recipe for target 'CMakeFiles/decode_with_drops.dir/all' failed
make[1]: *** [CMakeFiles/decode_with_drops.dir/all] Error 2
Makefile:129: recipe for target 'all' failed
make: *** [all] Error 2

[EDIT]: Adicionando o meu comando de compilação ffmpeg.

Eu estava seguindo o guia de compilação do Ubuntu postado em Meu comando, porém, foi um pouco diferente. Desativei o ffplay, já que estou instalando o ffmpeg em um servidor e habilitado o libsrt (Protocolo de Transporte Seguro Haivision) e libaom (AV1). Eu também mudei o link de download para baixar a versão 4.0 estável ao invés da última versão noturna. Este é o meu comando de compilação ffmpeg:

cd ~/ffmpeg_sources && \
wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-4.0.tar.bz2 && \
tar xjvf ffmpeg-snapshot.tar.bz2 && \
cd ffmpeg-4.0 && \
PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
  --prefix="$HOME/ffmpeg_build" \
  --pkg-config-flags="--static" \
  --extra-cflags="-I$HOME/ffmpeg_build/include" \
  --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
  --extra-libs="-lpthread -lm" \
  --bindir="$HOME/bin" \
  --enable-shared \
  --enable-gpl \
  --enable-nonfree \
  --enable-ladspa \
  --enable-libsrt \
  --enable-libsoxr \
  --enable-libspeex \
  --enable-avfilter \
  --enable-avresample \
  --enable-postproc \
  --enable-pthreads \
  --enable-libfdk-aac \
  --enable-libopus \
  --enable-libass \
  --enable-libtheora \
  --enable-libvorbis \
  --enable-libvpx \
  --enable-libx264 \
  --enable-libx265 \
  --enable-libfreetype \
  --enable-libkvazaar \
  --disable-ffplay \
  --enable-libopenjpeg \
  --enable-libwebp \
  --enable-libxvid \
  --enable-libvidstab \
  --enable-libopenh264 \
  --enable-zlib \
  --enable-openssl && \
PATH="$HOME/bin:$PATH" make -j8 && \
sudo make install && \
hash -r
    
por Georgе Stoyanov 07.05.2018 / 13:32

2 respostas

3

Atualizei o guia que você seguiu para incluir instruções de compilação de libaom sem precisar instalar outro gcc ou lidar com problemas de PIE:

cd ~/ffmpeg_sources && \
git -C aom pull 2> /dev/null || git clone --depth 1 https://aomedia.googlesource.com/aom && \
mkdir aom_build && \
cd aom_build && \
PATH="$HOME/bin:$PATH" cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$HOME/ffmpeg_build" -DENABLE_SHARED=off -DENABLE_NASM=on ../aom && \
PATH="$HOME/bin:$PATH" make && \
make install

Estas instruções estão sujeitas a alterações. Consulte sempre o Wiki do FFmpeg: Compilando o Ubuntu para obter instruções atualizadas.

Em seguida, compile ffmpeg , conforme mostrado no guia.

    
por 09.05.2018 / 20:42
1

Portanto, o problema era que o compilador gcc7 vinha com --enable-default-pie integrado, então a solução era recompilar o gcc com -no-pie e -fno-pie flags ou instalar uma versão sem o suporte de torta. Como Knud Larsen sugeriu, eu instalei o gcc-5.4.0 e vinculei o gcc e g + + para apontar para esta versão:

sudo rm /usr/bin/gcc /usr/bin/g++
sudo ln -s /usr/bin/gcc54 /usr/bin/gcc
sudo ln -s /usr/bin/g++54 /usr/bin/g++

e depois executado na pasta de compilação

make clean 
make distclean 

e novamente recompilado ffmpeg e isso resolveu meu problema. Uma boa ideia depois de terminar é re-linkar seu gcc e g++ para a versão mais recente que você instalou, no meu caso isso foi 7.

    
por 09.05.2018 / 11:21