blob: fe295243adad1a08019b660fcdb27139db71f1d5 (
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
29
30
31
32
33
|
require gcc-configure-xilinx-standalone.inc
COMPATIBLE_HOST:xilinx-standalone = "${HOST_SYS}"
EXTRA_OECONF:append:xilinx-standalone:class-target = " \
--disable-tm-clone-registry \
"
python do_multilib_install:xilinx-standalone:class-target () {
pass
}
standalone_fixup () {
(
cd ${D}${libdir}
for each in ${TARGET_SYS}/*/* ; do
ln -s $each $(basename $each)
done
)
# Apparently we can end up with an empty /lib occasionally
find ${D}/lib -type d | sort -r | xargs rmdir || :
}
FIXUP_FUNCTION = ""
FIXUP_FUNCTION:xilinx-standalone:class-target = " standalone_fixup"
do_install[postfuncs] .= "${FIXUP_FUNCTION}"
FILES:${PN}-dev:append:xilinx-standalone:class-target = " \
${libdir}/*.a \
${libdir}/*.o \
"
|