Tool/software: TI C/C++ Compiler
I think I stumbled over a problem discussed here but for the simplelink_msp432p4_sdk.
I am using Code Composer Studio Version: 8.3.0.00009 on Linux Ubuntu 18.04.
In the file <ti>/simplelink_msp432p4_sdk_2_40_00_10/source/ti/posix/ccs/errno.h
I had to change:
#include <../include/errno.h> // line 72
to:
#include_next <errno.h>
to get my C++ projects build with TI-RTOS / posix support.
Thanks
Peter