• 下载

​https://downloads.sourceforge.net/opencore-amr/fdk-aac-2.0.1.tar.gz​

  • 解压
tar xf fdk-aac-2.0.1.tar.gz 
cd fdk-aac-2.0.1/
  • 编译
BUILD_LIBS=${HOME}/build_libs

export PATH=${BUILD_LIBS}/bin:${PATH}

if [ -f autogen.sh ]; then
./autogen.sh
fi

autoreconf -fiv

./configure \
--prefix=${BUILD_LIBS} \
CFLAGS="-I${BUILD_LIBS}/include" \
LDFLAGS="-L${BUILD_LIBS}/lib"

make

make install