File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 206
206
# else /* unknown architecture */
207
207
# define ARCHITECTURE_ID ""
208
208
# endif
209
+
210
+ #elif defined(__TI_COMPILER_VERSION__ )
211
+ # if defined(__TI_ARM__ )
212
+ # define ARCHITECTURE_ID "ARM"
213
+
214
+ # elif defined(__MSP430__ )
215
+ # define ARCHITECTURE_ID "MSP430"
216
+
217
+ # elif defined(__TMS320C28XX__ )
218
+ # define ARCHITECTURE_ID "TMS320C28x"
219
+
220
+ # elif defined(__TMS320C6X__ ) || defined(_TMS320C6X )
221
+ # define ARCHITECTURE_ID "TMS320C6x"
222
+
223
+ # else /* unknown architecture */
224
+ # define ARCHITECTURE_ID ""
225
+ # endif
226
+
209
227
#else
210
228
# define ARCHITECTURE_ID
211
229
#endif
@@ -283,4 +301,3 @@ char const info_simulate_version[] = {
283
301
array rather than assigning a pointer to a static array. */
284
302
char const * info_platform = "INFO" ":" "platform[" PLATFORM_ID "]" ;
285
303
char const * info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]" ;
286
-
You can’t perform that action at this time.
0 commit comments