diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-04-30 12:14:30 +0000 |
---|---|---|
committer | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-04-30 12:14:30 +0000 |
commit | f3fdb339d5e6b4546feb95ed4a54199944667af9 (patch) | |
tree | b343932b3b480a4cd34d1a3c227124e77c122e6c | |
parent | 63f966d92bfe882fd7b904c024ac3ade8bd6a91c (diff) |
binutils-avr32.inc: Added.
-rw-r--r-- | packages/binutils/binutils-avr32.inc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/binutils/binutils-avr32.inc b/packages/binutils/binutils-avr32.inc new file mode 100644 index 0000000000..e74fb5132a --- /dev/null +++ b/packages/binutils/binutils-avr32.inc @@ -0,0 +1,31 @@ +# Extra tasks required when using Atmel's patches to binutils +# See http://avr32linux.org/twiki/bin/view/Main/BinutilsPatches for +# more information + + +do_avr32_reconf () { + if test ${TARGET_ARCH} == avr32; then + (cd ${S} && autoconf-2.13) || die "Error running autoconf" + for dir in bfd opcodes binutils ld; do + (cd "${S}/$dir" && + aclocal-1.9 && + autoconf && + automake-1.9 && + autoheader) || die "Error reconfiguring $dir" + done + fi +} + + +do_avr32_configure_bfd () { + if test ${TARGET_ARCH} == avr32; then + (cd ${B} && make configure-bfd) || die "Error running 'make configure-bfd'" + (cd ${B}/bfd && make headers) || die "Error running 'make headers'" + fi +} + + + +addtask avr32_reconf after do_patch before do_configure +addtask avr32_configure_bfd after do_configure before do_compile + |