Hi,
If I guix shell to arm-none-eabi-toolchain: ``` Ekaitz@tuxedo ~/projects/TESTS$ guix shell arm-none-eabi-toolchain ``` arm-none-eabi-toolchain can't use cstdlib because: ``` Ekaitz@tuxedo ~/projects/TESTS [env]$ cat a.c #include <cstdlib> void operator delete(void *p) { std::free(p); } Ekaitz@tuxedo ~/projects/TESTS [env]$ arm-none-eabi-g++ a.c In file included from a.c:1:0: /gnu/store/6bq6svar4b2mkp2k3laxqqs1nsxykrvf-profile/arm-none-eabi/include/c++/cstdlib:75:15: fatal error: stdlib.h: No such file or directory #include_next <stdlib.h> ^~~~~~~~~~ compilation terminated. Ekaitz@tuxedo ~/projects/TESTS [env]$ ``` But: ``` Ekaitz@tuxedo ~/projects/TESTS [env]$ ls $CROSS_C_INCLUDE_PATH | grep stdlib stdlib.h ``` Ideas?