quote characters got removed from defined symbols

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

quote characters got removed from defined symbols

Jump to solution
244 Views
BLEDev
Contributor II

Hello user support,

I have a strange SW build problem with MCUXpresso IDE v24.9 that the quote "" got removed Predefined symbols, this causes unexpected errors, please tell me how to fix it? I found a post with same problem Solved: v11.0.1 "Manage SDK Components" removes " from C++ Symbols - NXP Community But not sure where is the solution. I tried to change the double quote with <> but still not working and actually it's better to know the problem and solve it.

SSS_CONFIG_FILE="fsl_sss_config_elemu.h"
SSCP_CONFIG_FILE="fsl_sscp_config_elemu.h"

BLEDev_3-1729180748754.png

 

BLEDev_0-1729180602107.png

macro expansion

BLEDev_1-1729180609693.png

Error log:

BLEDev_2-1729180620468.png

Thanks!

 

0 Kudos
Reply
1 Solution
207 Views
Harry_Zhang
NXP Employee
NXP Employee

Hi @BLEDev 

Based on your  image and error message.

You can try changing

 

SSS_CONFIG_FILE="fsl_sss_config_elemu.h"
SSCP_CONFIG_FILE="fsl_sscp_config_elemu.h"

 

to

 

SSS_CONFIG_FILE='"fsl_sss_config_elemu.h"'
SSCP_CONFIG_FILE='"fsl_sscp_config_elemu.h"'

 

 

BR

Hang

View solution in original post

0 Kudos
Reply
1 Reply
208 Views
Harry_Zhang
NXP Employee
NXP Employee

Hi @BLEDev 

Based on your  image and error message.

You can try changing

 

SSS_CONFIG_FILE="fsl_sss_config_elemu.h"
SSCP_CONFIG_FILE="fsl_sscp_config_elemu.h"

 

to

 

SSS_CONFIG_FILE='"fsl_sss_config_elemu.h"'
SSCP_CONFIG_FILE='"fsl_sscp_config_elemu.h"'

 

 

BR

Hang

0 Kudos
Reply