summaryrefslogtreecommitdiff
path: root/libgcc/libgcc.oe
blob: 1b8dc5cf3e3be3155f0cb2715d09efe44bfed320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
DESCRIPTION = "GNU Support Library for gcc 3.x"
SECTION = "libs"
PRIORITY = "required"
DEPENDS = "virtual/libc"
RDEPENDS = "libc6"
PV = "${@os.popen("%s -dumpversion" % oe.data.getVar("CC",d,1)).readline().strip()}"

do_install() {
	install -d ${D}/${libdir}/
	install -m 0755 `${CC} -print-file-name=libgcc_s.so` ${D}/${libdir}/
}