Skip to content
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

Update 20180525 #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
**NOTE:** This fork updates components to support the latest ATTiny chips
https://www.microchip.com/design-centers/8-bit/avr-mcus/device-selection/attiny3217
In particular, this has been tested with an ATTiny1614 chip.



CrossPack for AVR Development is a development environment for Atmel's AVR
microcontrollers running on Apple's OS X, similar to AVR Studio on Windows.
It consists of the GNU compiler suite, a C library for the AVR, the AVRDUDE
Expand Down
13 changes: 13 additions & 0 deletions manual-source/releasenotes.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
<h1>Release Notes</h1>
The following list is in reverse historic order, new releases are inserted at the top:

<h2>CrossPack-AVR 20180525</h2>
<ul>
<li>Support for new XMega based ATTiny chips</li>
<li>Atmel Toolchain version 3.6.1</li>
<li>Avr-GCC version 5.4.0</li>
<li>Automake version 1.16.1</li>
<li>Autoconf version 2.69</li>
<li>GDB version 8.1</li>
<li>MPFR version 4.0.1</li>
<li>MPC version 1.1.0</li>
<li>Libusb version 1.0.22</li>
</ul>

<h2>CrossPack-AVR 20170210</h2>
<ul>
<li>New versions: avr-gcc 4.9.2, binutils 2.26.20160125, avr-libc 2.0.0, avrdude 6.3</li>
Expand Down
22 changes: 11 additions & 11 deletions mkdist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
pkgUnixName=CrossPack-AVR
pkgPrettyName="CrossPack for AVR Development"
pkgUrlName=crosspack # name used for http://www.obdev.at/$pkgUrlName
pkgVersion=20170210
pkgVersion=20180525

# Build dependencies
version_automake=1.15
version_autoconf=2.68
version_automake=1.16.1
version_autoconf=2.69

version_gdb=7.12
version_gdb=8.1
version_gmp=6.1.2
version_mpfr=3.1.2
version_mpc=1.0
version_mpfr=4.0.1
version_mpc=1.1.0
version_ppl=0.12.1
version_cloog=0.16.2
version_libusb=1.0.21
version_libusb=1.0.22
version_libusb_compat=0.1.5
version_avarice=2.13
version_avrdude=6.3
Expand All @@ -30,9 +30,9 @@ version_simulavr=0.1.2.7
# We want to add simavr to the distribution, but it does not compile easily...

# The following packages are fetched from Atmel:
atmelToolchainVersion=3.5.4
atmelToolchainVersion=3.6.1
version_binutils=2.26.20160125
version_gcc=4.9.2
version_gcc=5.4.0
#version_gcc3=3.4.6
#version_headers=???
version_avrlibc=2.0.0
Expand All @@ -42,7 +42,7 @@ if [ "$1" = debug ]; then
debug=true
fi

prefix="/usr/local/$pkgUnixName-$pkgVersion"
prefix="/Users/dwatson/work/tmp/$pkgUnixName-$pkgVersion"
configureArgs="--disable-dependency-tracking --disable-nls --disable-werror"

umask 0022
Expand Down Expand Up @@ -467,7 +467,7 @@ getPackage "$atmelBaseURL/avr-libc.tar.bz2" alwaysDownload "avr-libc-$version_av
getPackage https://ftp.gnu.org/gnu/automake/automake-"$version_automake".tar.gz
getPackage https://gmplib.org/download/gmp/gmp-"$version_gmp".tar.bz2
getPackage https://ftp.gnu.org/gnu/mpfr/mpfr-"$version_mpfr".tar.bz2
getPackage http://www.multiprecision.org/mpc/download/mpc-"$version_mpc".tar.gz
getPackage http://www.multiprecision.org/downloads/mpc-"$version_mpc".tar.gz
# We would like to compile with cloog, but linking 32 bit C++ code fails with clang.
#getPackage http://bugseng.com/products/ppl/download/ftp/releases/"$version_ppl"/ppl-"$version_ppl".tar.bz2
#getPackage http://gcc.cybermirror.org/infrastructure/cloog-"$version_cloog".tar.gz
Expand Down