Hi Experts:
I installed ti-processor-sdk-linux-am335x-evm-09.01.00.001 to build my example code.
And it seems the toolchain prefix already changed from arm-none-linux-gnueabihf ( ti-processor-sdk-linux-am335x-evm-08.02.00.24)to arm-oe-linux-gnueabi (ti-processor-sdk-linux-am335x-evm-09.01.00.001)
So, I tried to use arm-oe-linux-gnueabi-gcc to compile my test code.
I got fail as bellow, but it is no problem in ti-processor-sdk-linux-am335x-evm-08.02.00.24
[linux-devkit]:~/test/example> arm-oe-linux-gnueabi-gcc -o helloworld helloworld.c
In file included from /home/zh/ti-processor-sdk-linux-am335x-evm-09.01.00.001/linux-devkit/sysroots/armv7at2hf-neon-oe-linux-gnueabi/usr/include/gnu/stubs.h:23,
from /home/zh/ti-processor-sdk-linux-am335x-evm-09.01.00.001/linux-devkit/sysroots/armv7at2hf-neon-oe-linux-gnueabi/usr/include/features.h:514,
from /home/zh/ti-processor-sdk-linux-am335x-evm-09.01.00.001/linux-devkit/sysroots/armv7at2hf-neon-oe-linux-gnueabi/usr/include/bits/libc-header-start.h:33,
from /home/zh/ti-processor-sdk-linux-am335x-evm-09.01.00.001/linux-devkit/sysroots/armv7at2hf-neon-oe-linux-gnueabi/usr/include/stdio.h:27,
from helloworld.c:1:
/home/zh/ti-processor-sdk-linux-am335x-evm-09.01.00.001/linux-devkit/sysroots/armv7at2hf-neon-oe-linux-gnueabi/usr/include/gnu/stubs-32.h:7:11: fatal error: gnu/stubs-soft.h: No such file or directory
7 | # include <gnu/stubs-soft.h>
| ^~~~~~~~~~~~~~~~~~
compilation terminated.
How can I slove this problem.
Thank you.