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
{{ message }}
This repository was archived by the owner on Jun 5, 2019. It is now read-only.
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 text was updated successfully, but these errors were encountered:
The following device code *.proj files in
\DeviceCode\Targets\Native
contain
which is used in the GCC targets file to conditionally specify
-mthumb
optionHowever, 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 theARCH_TYPE_FLAGS
tag based on the device type, making the above statement redundant.The text was updated successfully, but these errors were encountered: