Hello Toradex Community,
I am currently working with the Verdin Development Board featuring the Verdin AM62D SoM. My project requires the ALSA library for audio support, specifically the asoundlib.h
header file. However, despite including the necessary packages in the local.conf
file, the header file is not present in the built image.
Configuration Details:
I have modified the local.conf
file to append the following packages for building the tdx-reference-minimal-image
:
IMAGE_INSTALL:append = " libiio libiio-iiod python3-pybluez python3 gcc make i2c-tools alsa-utils alsa-utils-aplay alsa-utils-arecord alsa-lib alsa-tools alsa-dev libi2c-dev"
Issue:
After successfully building the image, I encounter the following error:
fatal error: alsa/asoundlib.h: No such file or directory
This indicates that the asoundlib.h
header file is missing from the image, even though I have included the alsa-lib
and alsa-dev
packages, which should provide the necessary ALSA development files.