| 276 | The locale warnings can be ignored. |
| 277 | |
| 278 | With the help of Ivan we've determined that the version of SDCC that is installed by default does not support asx8051. |
| 279 | |
| 280 | It does support |
| 281 | {{{ |
| 282 | node1-1:~/gnuradio# sdcc -v |
| 283 | SDCC : avr/pic16/pic14/xa51 2.8.0 #5117 (May 16 2008) (UNIX) |
| 284 | }}} |
| 285 | |
| 286 | We downgraded the version of sdcc to 2.6.0-5: |
| 287 | {{{ |
| 288 | wget http://ftp.egr.msu.edu/debian/pool/main/s/sdcc/sdcc-libraries_2.6.0-5_all.deb |
| 289 | dpkg -i sdcc-libraries_2.6.0-5_all.deb |
| 290 | }}} |
| 291 | |
| 292 | This downgraded the libraries, but we also had to downgrade the complier it self, and the docs for laughs. |
| 293 | |
| 294 | http://packages.debian.org/etch/all/sdcc-doc/download |
| 295 | http://packages.debian.org/etch/i386/sdcc/download |
| 296 | |
| 297 | '''Note:''' uname -a says that our architecture is i686, but they only had debs for i386. The install process was the same. |
| 298 | |
| 299 | |
| 300 | |