Hello,
For my project i need to run the v4t-utils on a linux image. The linux image is running already but i need to crosscompile the package. In the example provided here https://software-dl.ti.com/jacinto7/esd/processor-sdk-linux-jacinto7/08_06_01_02/exports/docs/linux/Overview/GCC_ToolChain.html only a single C file is crosscompiled. I would need to compile a whole Makefile.
Within the ReadME of the v4l package is a how to guide for crosscompilation with a different toolchain:
To cross compile with the Linaro toolchain run the following commands:
export PATH=/opt/gcc-linaro-arm-linux-gnueabihf-2012.09-20120921_linux/bin:$PATH
export PKG_CONFIG_LIBDIR=/path/to/cross/root/lib
./configure --host=arm-linux-gnueabihf --without-jpeg
make
Maybe this can somehow be adapted with the Ti GCC Toolchain
Thank you in advance