1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-15 12:29:26 +01:00

[sam] added toolchain download for windows

This commit is contained in:
Cristian Maglie 2012-05-17 05:43:25 +02:00
parent 844f559439
commit 6537c1c059
3 changed files with 39 additions and 0 deletions

View File

@ -600,6 +600,8 @@
<chmod perm="755">
<fileset dir="windows/work" includes="**/*.html, **/*.dll, **/*.exe" />
</chmod>
<antcall target="get-arm-toolchain-help" />
</target>
<target name="windows-run" depends="windows-build"
@ -608,6 +610,42 @@
dir="windows/work" spawn="true"/>
</target>
<target name="windows-check-arm-toolchain-distfile">
<available file="windows/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-win32.tar.gz" property="arm_distfile_available" />
</target>
<target name="windows-get-arm-toolchain" depends="windows-check-arm-toolchain-distfile" unless="arm_distfile_available">
<!-- Retrieve ARM toolchain -->
<get
src="http://arduino.googlecode.com/files/gcc-arm-none-eabi-4.4.1-2010q1-188-win32.tar.gz"
dest="windows/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-win32.tar.gz"
verbose="true" />
</target>
<target name="windows-check-arm-toolchain">
<available file="windows/work/hardware/tools/g++_arm_none_eabi" property="arm_available" />
</target>
<target name="windows-unzip-arm-toolchain" depends="windows-get-arm-toolchain, windows-check-arm-toolchain" unless="arm_available">
<checksum file="windows/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-win32.tar.gz" algorithm="sha"
fileext=".sha" verifyproperty="checksum.matches"/>
<condition property="checksum.matches.fail">
<equals arg1="${checksum.matches}" arg2="false"/>
</condition>
<fail if="checksum.matches.fail">Checksum failed.
File gcc-arm-none-eabi-4.4.1-2010q1-188-win32.tar.gz failed checksum.
Please remove "windows/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-win32.tar.gz" to download it again.
</fail>
<!-- Unzip toolchain to the destination folder -->
<exec executable="tar">
<arg value="xfz"/>
<arg value="windows/dist/gcc-arm-none-eabi-4.4.1-2010q1-188-win32.tar.gz"/>
<arg value="--directory=windows/work/hardware/tools"/>
</exec>
</target>
<target name="windows-dist" depends="windows-build"
description="Create .zip files of windows version">

Binary file not shown.

View File

@ -0,0 +1 @@
f288affa058bfdd44f8b93800fc4cb01b2ebf1e5