You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which is used in the GCC targets file to conditionally specify -mthumb option
<CC_CPP_COMMON_FLAGSCondition="'$(INSTRUCTION_SET)'=='thumb' and '$(ARMBUILD_ONLY)'!='true' ">... -mthumb</...>
However, the Cortex-M series do not support ARM instruction set, so setting in the proj file is incorrect and should be removed. The -mthumb option is specified in the ARCH_TYPE_FLAGS tag based on the device type, making the above statement redundant.
The following device code *.proj files in
\DeviceCode\Targets\Nativecontain
which is used in the GCC targets file to conditionally specify
-mthumboptionHowever, the Cortex-M series do not support ARM instruction set, so setting in the proj file is incorrect and should be removed. The
-mthumboption is specified in theARCH_TYPE_FLAGStag based on the device type, making the above statement redundant.