Skip to content

Commit 4e2010f

Browse files
committed
Update to arduino14
1 parent d9af275 commit 4e2010f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

package-avrdude.bash

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# along with this program; if not, write to the Free Software
1616
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1717

18-
OUTPUT_VERSION=6.3.0-arduino13
18+
OUTPUT_VERSION=6.3.0-arduino14
1919

2020
export OS=`uname -o || uname`
2121
export TARGET_OS=$OS
@@ -28,6 +28,13 @@ if [[ $CROSS_COMPILE == "mingw" ]] ; then
2828
export TARGET_OS="Windows"
2929
OUTPUT_TAG=i686-w64-mingw32
3030

31+
elif [[ $CROSS_COMPILE == "arm64-cross" ]] ; then
32+
export CC="aarch64-linux-gnu-gcc"
33+
export CXX="aarch64-linux-gnu-g++"
34+
export CROSS_COMPILE_HOST="aarch64-linux-gnu"
35+
export TARGET_OS="GNU/Linux"
36+
OUTPUT_TAG=aarch64-linux-gnu
37+
3138
elif [[ $CROSS_COMPILE == "arm-cross" ]] ; then
3239
export CC="arm-linux-gnueabihf-gcc"
3340
export CXX="arm-linux-gnueabihf-g++"

0 commit comments

Comments
 (0)