Hi there,
I have been getting the following error:
INTERNAL ERROR: /home/smithr/ti/TI_CGT_C6000_7.4.6/bin/acp6x experienced a segmentation fault while
processing
When compiling the following code with c6lx below:
#include <stdint.h>
#include "gtest/gtest.h"
const int16_t VAL = 1;
int main(void)
{
int16_t t = VAL + 1;
EXPECT_EQ(VAL, 1);
return t;
}
If fails on the EXPECT_EQ clause, and fails because of VAL. It works if EXPECT_EQ(VAL, 1) is replaced by EXPECT_EQ(1,1).
I am running TI_CGT_C6000_7.4.6 under Linux.
Has anyone seen this before?