[msp430]: a way skip nanolib for MSP430#685
Conversation
|
Well, that indeed works for boards from TI, but I wanted something specific to "projects using msp430 the arch", regardless of which board you're using. And I forgot at this point why this was a "TODO" (maybe there's no easy way to extract arch using |
|
not all board will have an PS: it is in the common |
hathach
left a comment
There was a problem hiding this comment.
can you use CROSS_COMPILE which is more accurate in this case.
|
|
||
| # TODO Skip nanolib for MSP430 | ||
| ifeq ($(BOARD), msp_exp430f5529lp) | ||
| ifeq ($(findstring msp_exp430,$(BOARD)), msp_exp430) |
There was a problem hiding this comment.
can you use CROSS_COMPILE which is more accurate in this case.
ifeq ($(CROSS_COMPILE), msp430-elf-)
|
It looks like you can easily modify it just a bit. |
I think that's a way to remove one to-do item in your code.