blob: fd0e5d99e98bc986dc993c3be8f9148c8751ec26 (
plain)
| 1
2
3
4
5
6
7
8
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++ "$@"
 |