Convert audio PCM into AAC.
sudo apt update
sudo apt install -y autoconf automake libtool pkg-config
mkdir installl
./bootstrap
./configure --host=$(YOUR_TARGET_HOST) --prefix=$(pwd)/install CC=$(YOUR_CC_TOOLCHAIN) CXX=$(YOUR_CPP_TOOLCHAIN)
make
make install
NOTE:
- All libraries will be put in install directory.
- If no need to cross compile, just run ./configure --prefix=$(pwd)/install
cd examples
make
./pcm2aac --help