gcc-sdk_3.4.4.bb

来自「These are the kernel patches against the」· BB 代码 · 共 35 行

BB
35
字号
# GCC-SDK .bb build file# Copyright (C) 2005, Advanced Micro Devices, Inc.  All Rights Reserved# Released under the MIT license (see /COPYING)DESCRIPTION="Create an SDK from cross and staging"DEPENDS="gcc-cross-${PV} gdb-cross linux-libc-headers"SRC_URI="http://kegel.com/crosstool/crosstool-0.38/fix-embedded-paths.c"S=${WORKDIR}PR="r2"BINDIR="/opt/${TARGET_SYS}-${PN}-${PV}"FILES_${PN}=${BINDIR}do_compile () {	gcc fix-embedded-paths.c -o fix-embedded-paths}	do_install () {	install -d ${D}${BINDIR}/cross	install -d ${D}${BINDIR}/staging 	cp -a ${TMPDIR}/cross ${D}${BINDIR}	cp -a ${TMPDIR}/staging ${D}${BINDIR}	${S}/fix-embedded-paths ${TMPDIR} ${BINDIR} ${D}${BINDIR}	#Not sure where these guys are coming from	find ${D} -type f -size 0 -name st?????? | xargs rm -f}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?