diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-02 08:17:07 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-11-02 08:17:07 -0400 |
commit | b26edffda07b017b5a385491d7232efce0020631 (patch) | |
tree | a00bde5389ffadc853cf5d31dbf60de084e7fcc0 /Makefile | |
parent | 6dcf780a3b39e54127468af4682b3df480c4bdbd (diff) |
msp430 impl targets msp430fr2476
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,10 +12,10 @@ all: alee msp430: CXX := msp430-elf-g++ msp430: AR := msp430-elf-gcc-ar -msp430: CXXFLAGS += -I. -msp430: CXXFLAGS += -Os -mmcu=msp430g2553 -ffunction-sections -fdata-sections -msp430: CXXFLAGS += -DMEMDICTSIZE=128 -flto -fno-asynchronous-unwind-tables -fno-threadsafe-statics -fno-stack-protector -msp430: LDFLAGS += -L/usr/msp430-elf/usr/include -Tmsp430/msp430g2553.ld -Wl,-gc-sections +msp430: CXXFLAGS += -I. -I/usr/msp430-elf/usr/include +msp430: CXXFLAGS += -Os -mmcu=msp430fr2476 -ffunction-sections -fdata-sections +msp430: CXXFLAGS += -DMEMDICTSIZE=1024 -flto -fno-asynchronous-unwind-tables -fno-threadsafe-statics -fno-stack-protector +msp430: LDFLAGS += -L/usr/msp430-elf/usr/include -Tmsp430/msp430fr2476.ld -Wl,-gc-sections msp430: clean-lib msp430/alee-msp430 msp430-prep: STANDALONE += forth/msp430.fth |