On Nov 21, 2010, at 10:21 PM, KPL wrote: > not a lot of other tools are available in linux. cc5x runs pretty well under Wine... I'd expect most other "command =20 line" compilers to do so as well... I wrote some shell scripts to make the "wine" part invisible. #!/bin/bash echo $0 case $0 in */cc5x) app=3D~/Applications/WineApps/cc5x/cc5x.exe if [ "x$*" !=3D "x" ]; then config=3D-IC:cc5x args=3D$* fi;; */mpasm) app=3D~/Applications/WineApps/mpasm if [ "x$*" !=3D "x" ]; then config=3D args=3D$* fi;; mplink) app=3D~/Applications/WineApps/cc5x/cc5x.exe config=3D-IC:cc5x args=3D$*;; esac echo win $app $config $args /sw/bin/wine $app $config $args --=20 http://www.piclist.com PIC/SX FAQ & list archive View/change your membership options at http://mailman.mit.edu/mailman/listinfo/piclist .