|
22 | 22 | <condition property="platform" value="windows"><os family="windows" /></condition>
|
23 | 23 | <condition property="platform" value="linux32"><os family="unix" arch="i386" /></condition>
|
24 | 24 | <condition property="platform" value="linux64"><os family="unix" arch="amd64" /></condition>
|
25 |
| - <condition property="platform" value="arm"><os family="unix" arch="arm" /></condition> |
| 25 | + <condition property="platform" value="linuxarm"><os family="unix" arch="arm" /></condition> |
26 | 26 |
|
27 | 27 | <condition property="macosx"><equals arg1="${platform}" arg2="macosx" /></condition>
|
28 | 28 | <condition property="windows"><equals arg1="${platform}" arg2="windows" /></condition>
|
29 | 29 | <condition property="linux32"><equals arg1="${platform}" arg2="linux32" /></condition>
|
30 | 30 | <condition property="linux64"><equals arg1="${platform}" arg2="linux64" /></condition>
|
31 | 31 | <condition property="linux"><equals arg1="${platform}" arg2="linux32" /></condition>
|
32 | 32 | <condition property="linux"><equals arg1="${platform}" arg2="linux64" /></condition>
|
33 |
| - <condition property="linux"><equals arg1="${platform}" arg2="arm" /></condition> |
| 33 | + <condition property="linux"><equals arg1="${platform}" arg2="linuxarm" /></condition> |
34 | 34 |
|
35 | 35 | <condition property="staging_folder" value="macosx"><equals arg1="${platform}" arg2="macosx" /></condition>
|
36 | 36 | <condition property="staging_folder" value="windows"><equals arg1="${platform}" arg2="windows" /></condition>
|
37 | 37 | <condition property="staging_folder" value="linux"><equals arg1="${platform}" arg2="linux32" /></condition>
|
38 | 38 | <condition property="staging_folder" value="linux"><equals arg1="${platform}" arg2="linux64" /></condition>
|
39 |
| - <condition property="staging_folder" value="linux"><equals arg1="${platform}" arg2="arm" /></condition> |
| 39 | + <condition property="staging_folder" value="linux"><equals arg1="${platform}" arg2="linuxarm" /></condition> |
40 | 40 |
|
41 | 41 | <condition property="staging_hardware_folder" value="Arduino.app/Contents/Java/hardware"><equals arg1="${platform}" arg2="macosx" /></condition>
|
42 | 42 | <condition property="staging_hardware_folder" value="hardware"><equals arg1="${platform}" arg2="windows" /></condition>
|
43 | 43 | <condition property="staging_hardware_folder" value="hardware"><equals arg1="${platform}" arg2="linux32" /></condition>
|
44 | 44 | <condition property="staging_hardware_folder" value="hardware"><equals arg1="${platform}" arg2="linux64" /></condition>
|
45 |
| - <condition property="staging_hardware_folder" value="hardware"><equals arg1="${platform}" arg2="arm" /></condition> |
| 45 | + <condition property="staging_hardware_folder" value="hardware"><equals arg1="${platform}" arg2="linuxarm" /></condition> |
46 | 46 |
|
47 | 47 | <condition property="arch-bits" value="32">
|
48 | 48 | <equals arg1="${platform}" arg2="linux32"/>
|
49 | 49 | </condition>
|
50 | 50 | <condition property="arch-bits" value="32">
|
51 |
| - <equals arg1="${platform}" arg2="arm"/> |
| 51 | + <equals arg1="${platform}" arg2="linuxarm"/> |
52 | 52 | </condition>
|
53 | 53 | <condition property="arch-bits" value="64">
|
54 | 54 | <equals arg1="${platform}" arg2="linux64"/>
|
|
61 | 61 | <property name="WINDOWS_BUNDLED_JVM" value="${java.home}"/>
|
62 | 62 | <property name="LINUX32_BUNDLED_JVM" value="none"/>
|
63 | 63 | <property name="LINUX64_BUNDLED_JVM" value="none"/>
|
| 64 | + <property name="LINUXARM_BUNDLED_JVM" value="none"/> |
64 | 65 | <condition property="linux-bundle-jvm-task" value="noop">
|
65 | 66 | <and>
|
66 | 67 | <equals arg1="${LINUX32_BUNDLED_JVM}" arg2="none"/>
|
67 | 68 | <equals arg1="${LINUX64_BUNDLED_JVM}" arg2="none"/>
|
| 69 | + <equals arg1="${LINUXARM_BUNDLED_JVM}" arg2="none"/> |
68 | 70 | </and>
|
69 | 71 | </condition>
|
70 | 72 | <condition property="linux-bundle-jvm-task" value="bundle">
|
|
75 | 77 | <not>
|
76 | 78 | <equals arg1="${LINUX64_BUNDLED_JVM}" arg2="none"/>
|
77 | 79 | </not>
|
| 80 | + <not> |
| 81 | + <equals arg1="${LINUXARM_BUNDLED_JVM}" arg2="none"/> |
| 82 | + </not> |
78 | 83 | </or>
|
79 | 84 | </condition>
|
80 | 85 |
|
|
641 | 646 |
|
642 | 647 | </target>
|
643 | 648 |
|
644 |
| - <target name="arm-build" depends="linux-libastyle-arm" description="Build linux (32-bit) version"> |
| 649 | + <target name="linuxarm-build" depends="linux-libastyle-arm" description="Build linux (32-bit) version"> |
645 | 650 | <antcall target="linux-jvm-${linux-bundle-jvm-task}">
|
646 |
| - <param name="JVM" value="${LINUX32_BUNDLED_JVM}"/> |
| 651 | + <param name="JVM" value="${LINUXARM_BUNDLED_JVM}"/> |
647 | 652 | </antcall>
|
648 | 653 |
|
649 | 654 | <delete dir="${staging_folder}/arduino-builder-arm" includeemptydirs="true"/>
|
|
753 | 758 |
|
754 | 759 | <target name="linux64-run" depends="build,start"/>
|
755 | 760 |
|
756 |
| - <target name="arm-run" depends="build,start"/> |
| 761 | + <target name="linuxarm-run" depends="build,start"/> |
757 | 762 |
|
758 | 763 | <target name="linux32-start">
|
759 | 764 | <exec executable="./linux/work/arduino" spawn="false" failonerror="true"/>
|
|
763 | 768 | <exec executable="./linux/work/arduino" spawn="false" failonerror="true"/>
|
764 | 769 | </target>
|
765 | 770 |
|
766 |
| - <target name="arm-start"> |
| 771 | + <target name="linuxarm-start"> |
767 | 772 | <exec executable="./linux/work/arduino" spawn="false" failonerror="true"/>
|
768 | 773 | </target>
|
769 | 774 |
|
|
846 | 851 | </target>
|
847 | 852 |
|
848 | 853 | <target name="linux32-dist" depends="linux-dist"
|
849 |
| - description="Build .tar.xz of linux version" /> |
| 854 | + description="Build .tar.xz of linux x86_32 version" /> |
850 | 855 |
|
851 | 856 | <target name="linux64-dist" depends="linux-dist"
|
852 |
| - description="Build .tar.xz of linux version" /> |
| 857 | + description="Build .tar.xz of linux x86_64 version" /> |
853 | 858 |
|
854 |
| - <target name="arm-dist" depends="linux-dist" |
855 |
| - description="Build .tar.xz of linux version" /> |
| 859 | + <target name="linuxarm-dist" depends="linux-dist" |
| 860 | + description="Build .tar.xz of linux armhf version" /> |
856 | 861 |
|
857 | 862 | <!-- - - - - - - - -->
|
858 | 863 | <!-- Windows -->
|
|
0 commit comments