I have update my mdk compiler to V5.30, an err "RTE_Components.h not found" print out when compile SDK 2.7.0 version with MIMXRT1064
I recently meet the same bug. but I think it's not bug of AC6,
after some research, I found the -D_RTE_ define is imported during depends parsing step.
but in entire SDK_2.8.2_EVK-MIMXRT1010 folder, there was only $ifdef check, I can't found the source of _RTE_.
Hi Yunfeng Zhang ,
Thank you for your interest in NXP Semiconductor products and
for the opportunity to serve you.
Actually, I've no idea about this error, so I was wondering if you can describe the steps of replicating the issue.
Have a great day,
TIC
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
- We are following threads for 7 weeks after the last post, later replies are ignored
Please open a new thread and refer to the closed one, if you have a related question at a later point in time.
-------------------------------------------------------------------------------
This error is caused by AC6 not recognizing # ifDEF _RTE_. It can be solved by changing the code:
# ifdef _RTE_
# include "RTE_Components. H"
# endif
Instead of
# ifdef _RTE_
/ * # include "RTE_Components. H" * /
# endif