blob: 7833acc944c6922756db4a0339ecba53902aa4da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
Binutils Package
================
Interesting Patches
-------------------
ld needs to be built with multiarch library directories in its list of search
paths. Debian has [a patch][debian-ld-ma-patch] to which we can refer for this.
Building the Binutils Package
-----------------------------
If you want to temporarily change the targets for which Binutils is built, run
the following commands before building:
$ ./config clean
$ PKG_TARGETS='list of architectures' ./config
The default targets are listed in the `targets.in` file.
To configure Binutils to be built for all default targets, run the following
commands before building:
$ ./config clean
$ ./config
[debian-ld-ma-patch]: http://patch-tracker.debian.org/patch/series/view/binutils/2.22-7.1/129_ld_mulitarch_dirs.patch
|