blob: dc30c6b2e6e4c757a2ea712951bc4e3fc5879f59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require newlib.inc
do_configure_prepend_microblaze() {
# hack for microblaze, which needs xilinx.ld to literally do any linking (its hard coded in its LINK_SPEC)
export CC="${CC} -L${S}/libgloss/microblaze"
}
do_configure() {
${S}/configure ${CONFIGUREOPTS}
}
|