GCC_PLUGINS Kconfig selection problem on longer paths
Hi,
I have custom board running 5.15.24 OpenSTLinux on STM32MP157F based board.
Problem is, when I try to select CONFIG_GCC_PLUGINS. It depends on
depends on $(success,test -e $(shell,$(CC) -print-file-name=plugin)/include/plugin-version.h)in file
scripts\gcc-plugins\KconfigI just can't select it, because evaluation of the conditions is always negative.
I have traced the CC binary and when I run -print-file-name manually on it, plugin-version.h exist on the path.
Problem seems to be with
$(shellcall, which on ST port of Linux always crops output to 256 characters (which results in non existent path, because it points deeply into Yocto build folders)!
I have tried it with
$(shell,echoand it results in same cropping.
When I try the same thing on my i.MX repository from NXP, output is correct and I can select CONFIG_GCC_PLUGINS correctly.
Any ideas for what is going on?
Thanks in advance,
Michal Spanik
