diff options
Diffstat (limited to 'script/g++wrap')
-rwxr-xr-x | script/g++wrap | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/script/g++wrap b/script/g++wrap new file mode 100755 index 0000000..fd0e5d9 --- /dev/null +++ b/script/g++wrap @@ -0,0 +1,9 @@ +#!/bin/zsh + +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++ "$@" |