|
419 | 419 | <target name="linux-get-arm-toolchain" depends="linux-check-arm-toolchain" if="arm_not_available">
|
420 | 420 | <!-- Retrieve ARM toolchain... -->
|
421 | 421 | <get
|
422 |
| - src="http://static.leaflabs.com/pub/codesourcery/gcc-arm-none-eabi-latest-linux32.tar.gz" |
423 |
| - dest="linux/dist/gcc-arm-none-eabi-latest-linux32.tar.gz" |
| 422 | + src="http://arduino.googlecode.com/files/gcc-arm-none-eabi-4.4.1-2010q1-188-linux32.tar.gz" |
| 423 | + dest="linux/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-linux32.tar.gz" |
424 | 424 | skipexisting="true" verbose="true" />
|
425 |
| - <checksum file="linux/dist/gcc-arm-none-eabi-latest-linux32.tar.gz" algorithm="sha" |
| 425 | + <checksum file="linux/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-linux32.tar.gz" algorithm="sha" |
426 | 426 | fileext=".sha" verifyproperty="checksum.matches"/>
|
427 | 427 | <condition property="checksum.matches.fail">
|
428 | 428 | <equals arg1="${checksum.matches}" arg2="false"/>
|
429 | 429 | </condition>
|
430 | 430 | <fail if="checksum.matches.fail">
|
431 |
| - File gcc-arm-none-eabi-latest-linux32.tar.gz failed checksum. |
432 |
| - Please remove "linux/dist/gcc-arm-none-eabi-latest-linux32.tar.gz" to download again. |
| 431 | + File gcc-arm-none-eabi-4.4.1-2010q1-188-linux32.tar.gz failed checksum. |
| 432 | + Please remove "linux/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-linux32.tar.gz" to download again. |
433 | 433 | </fail>
|
434 | 434 |
|
435 | 435 | <!-- ...and unzip on the destination folder -->
|
436 | 436 | <exec executable="tar" output="/dev/null" os="Linux">
|
437 | 437 | <arg value="xfz"/>
|
438 |
| - <arg value="linux/dist/gcc-arm-none-eabi-latest-linux32.tar.gz"/> |
| 438 | + <arg value="linux/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-linux32.tar.gz"/> |
439 | 439 | <arg value="--directory=linux/work/hardware/tools"/>
|
440 | 440 | </exec>
|
441 | 441 |
|
442 |
| - <move file="linux/work/hardware/tools/arm" |
443 |
| - tofile="linux/work/hardware/tools/g++_arm_none_eabi" /> |
444 |
| - |
445 | 442 | <copy todir="linux/work" file="linux/dist/arduino" />
|
446 | 443 | <chmod perm="755" file="linux/work/arduino" />
|
447 | 444 | </target>
|
|
0 commit comments