diff options
Diffstat (limited to 'src/arch/msp430fr5994lp-256k/g++wrap')
-rwxr-xr-x | src/arch/msp430fr5994lp-256k/g++wrap | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/arch/msp430fr5994lp-256k/g++wrap b/src/arch/msp430fr5994lp-256k/g++wrap new file mode 100755 index 0000000..df8c7ab --- /dev/null +++ b/src/arch/msp430fr5994lp-256k/g++wrap @@ -0,0 +1,11 @@ +#!/bin/zsh + +echo "> $@" + +for i in {1..$#}; do + if [[ $argv[$i] == *_agxx_* && -f $argv[$i] ]]; then + sed -i 's/inline void \* operator new (unsigned int,/inline void * operator new(__int20 unsigned,/' $argv[$i] + fi +done + +exec /opt/msp430/ti/msp430-gcc-full-linux-5.1.2.0/bin/msp430-elf-g++ "$@" |