Changes in / [1cc4a09:b705ecc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/binutils/intrusive.sh
r1cc4a09 rb705ecc 92 92 # incompatibility, libiberty fnmatch has to be manually hidden. 93 93 # 94 # Patch 8 95 # When building binutils for arm32 target, there is a conflict with 96 # libposix function name redefinitons in one of the arm-specific files. 97 # 94 98 95 99 case "$1" in … … 99 103 cp -f "$2/bfd/configure" "$2/bfd/configure.backup" 100 104 cp -f "$2/gas/configure" "$2/gas/configure.backup" 105 cp -f "$2/gas/config/tc-arm.c" "$2/gas/config/tc-arm.c.backup" 101 106 cp -f "$2/intl/configure" "$2/intl/configure.backup" 102 107 cp -f "$2/ld/configure" "$2/ld/configure.backup" … … 129 134 sed 's/^cross_compiling=no/cross_compiling=yes/g' \ 130 135 > "$2/gas/configure" 136 137 # Patch gas tc-arm.c. 138 cat "$2/gas/config/tc-arm.c.backup" | \ 139 # See Patch 8. 140 sed 's/\(#include "dwarf2dbg.h"\)/\1\n#undef div/g' \ 141 > "$2/gas/config/tc-arm.c" 131 142 132 143 # Patch intl configure script. … … 193 204 mv -f "$2/bfd/configure.backup" "$2/bfd/configure" 194 205 mv -f "$2/gas/configure.backup" "$2/gas/configure" 206 mv -f "$2/gas/config/tc-arm.c.backup" "$2/gas/config/tc-arm.c" 195 207 mv -f "$2/intl/configure.backup" "$2/intl/configure" 196 208 mv -f "$2/ld/configure.backup" "$2/ld/configure"
Note:
See TracChangeset
for help on using the changeset viewer.