Skip to content

Update to arduino14 #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion avrdude-6.3.build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cd objdir
PREFIX=`pwd`
cd -

git clone https://github.com/facchinm/avrdude.git avrdude-6.3 --depth 1 -b staging
git clone https://github.com/facchinm/avrdude.git avrdude-6.3 --depth 1

cd avrdude-6.3

Expand Down
6 changes: 3 additions & 3 deletions libhidapi.build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ fi

if [[ $TARGET_OS == "GNU/Linux" ]] ; then

wget https://github.com/gentoo/eudev/archive/v3.2.5.tar.gz
tar xvf v3.2.5.tar.gz
cd eudev-3.2.5
wget https://github.com/gentoo/eudev/archive/v3.1.3.tar.gz
tar xvf v3.1.3.tar.gz
cd eudev-3.1.3
./autogen.sh
./configure --enable-static --disable-gudev --disable-introspection --disable-shared --disable-blkid --disable-kmod --disable-manpages --prefix=$PREFIX $CONFARGS
make clean
Expand Down
9 changes: 8 additions & 1 deletion package-avrdude.bash
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

OUTPUT_VERSION=6.3.0-arduino13
OUTPUT_VERSION=6.3.0-arduino14

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

elif [[ $CROSS_COMPILE == "arm64-cross" ]] ; then
export CC="aarch64-linux-gnu-gcc"
export CXX="aarch64-linux-gnu-g++"
export CROSS_COMPILE_HOST="aarch64-linux-gnu"
export TARGET_OS="GNU/Linux"
OUTPUT_TAG=aarch64-linux-gnu

elif [[ $CROSS_COMPILE == "arm-cross" ]] ; then
export CC="arm-linux-gnueabihf-gcc"
export CXX="arm-linux-gnueabihf-g++"
Expand Down