diff options
Diffstat (limited to 'toolchain-layer/recipes-devtools/binutils/binutils_2.20.1.bb')
-rw-r--r-- | toolchain-layer/recipes-devtools/binutils/binutils_2.20.1.bb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/toolchain-layer/recipes-devtools/binutils/binutils_2.20.1.bb b/toolchain-layer/recipes-devtools/binutils/binutils_2.20.1.bb new file mode 100644 index 000000000..d0f889caf --- /dev/null +++ b/toolchain-layer/recipes-devtools/binutils/binutils_2.20.1.bb | |||
@@ -0,0 +1,52 @@ | |||
1 | require binutils.inc | ||
2 | |||
3 | PR = "r9" | ||
4 | |||
5 | LIC_FILES_CHKSUM="\ | ||
6 | file://src-release;endline=17;md5=4830a9ef968f3b18dd5e9f2c00db2d35\ | ||
7 | file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552\ | ||
8 | file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674\ | ||
9 | file://COPYING3;md5=d32239bcb673463ab874e80d47fae504\ | ||
10 | file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6\ | ||
11 | file://gas/COPYING;md5=d32239bcb673463ab874e80d47fae504\ | ||
12 | file://include/COPYING;md5=59530bdf33659b29e73d4adb9f9f6552\ | ||
13 | file://include/COPYING3;md5=d32239bcb673463ab874e80d47fae504\ | ||
14 | file://libiberty/COPYING.LIB;md5=a916467b91076e631dd8edb7424769c7\ | ||
15 | file://bfd/COPYING;md5=d32239bcb673463ab874e80d47fae504\ | ||
16 | " | ||
17 | |||
18 | SRC_URI = "\ | ||
19 | ${GNU_MIRROR}/binutils/binutils-${PV}a.tar.bz2 \ | ||
20 | file://binutils-uclibc-100-uclibc-conf.patch \ | ||
21 | file://110-arm-eabi-conf.patch \ | ||
22 | file://binutils-uclibc-300-001_ld_makefile_patch.patch \ | ||
23 | file://binutils-uclibc-300-006_better_file_error.patch \ | ||
24 | file://binutils-uclibc-300-012_check_ldrunpath_length.patch \ | ||
25 | file://binutils-uclibc-gas-needs-libm.patch \ | ||
26 | file://binutils-x86_64_i386_biarch.patch \ | ||
27 | file://binutils-mips-pie.patch \ | ||
28 | file://libtool-2.4-update.patch \ | ||
29 | file://binutils-2.19.1-ld-sysroot.patch \ | ||
30 | file://libiberty_path_fix.patch \ | ||
31 | file://binutils-poison.patch \ | ||
32 | file://libtool-rpath-fix.patch \ | ||
33 | file://152_arm_branches_to_weak_symbols.patch \ | ||
34 | file://200_elflink_%B_fixes.patch \ | ||
35 | file://201_elflink_improve_noaddneeded_errors.patch \ | ||
36 | file://202_elflink_noaddneeded_vs_weak.patch \ | ||
37 | " | ||
38 | |||
39 | SRC_URI[md5sum] = "2b9dc8f2b7dbd5ec5992c6e29de0b764" | ||
40 | SRC_URI[sha256sum] = "71d37c96451333c5c0b84b170169fdcb138bbb27397dc06281905d9717c8ed64" | ||
41 | |||
42 | BBCLASSEXTEND = "native" | ||
43 | |||
44 | do_configure_prepend() { | ||
45 | sed -i -e 's: -Werror::g' ${S}/bfd/warning.m4 | ||
46 | |||
47 | # These aren't getting regenerated by autotools.bbclass | ||
48 | for i in $(find ${S} -name "configure") ; do | ||
49 | sed -i -e 's: -Werror::g' $i | ||
50 | done | ||
51 | } | ||
52 | |||