aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gcc/gcc-cross-intermediate.inc
blob: c2ec66d8ad0af4306a1cb6e9bd45f4ec645b6633 (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
34
35
36
37
38
39
40
41
42
DEPENDS = "virtual/${TARGET_PREFIX}binutils ${NATIVEDEPS}"
DEPENDS += "virtual/${TARGET_PREFIX}libc-initial"
PROVIDES = "virtual/${TARGET_PREFIX}gcc-intermediate"
PACKAGES = ""

# This is intended to be a -very- basic config
# sysroot is needed in case we use libc-initial
EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \
		--enable-shared \
		--disable-multilib \
		--disable-threads \
		--enable-languages=c \
		--program-prefix=${TARGET_PREFIX} \
		${EXTRA_OECONF_PATHS} \
		${OPTSPACE} \
		${EXTRA_OECONF_INTERMEDIATE} \
		${@get_gcc_fpu_setting(bb, d)} \
		${@get_gcc_mips_plt_setting(bb, d)}"

do_install () {
        oe_runmake 'DESTDIR=${D}' install
        install -d ${D}${target_base_libdir}
        install -d ${D}${target_libdir}

        for d in ${TARGET_SYS}/lib/nof ${TARGET_SYS}/lib64 ${TARGET_SYS}/lib; do
                if [ -d ${D}${prefix}/$d/ ]; then
                        mv -f ${D}${prefix}/$d/libgcc* ${D}${target_base_libdir} || true
                        mv -f ${D}${prefix}/$d/* ${D}${target_libdir} || true
                fi
        done
        rm -f ${D}${target_base_libdir}/libgcc_s.so
        rm -f ${D}${target_libdir}/libgcc_s.so
       echo "/* GNU ld script
   Use the shared library, but some functions are only in
   the static library.  */
GROUP ( libgcc_s.so.1 libgcc.a )" > ${D}${target_libdir}/libgcc_s.so
    # If this is important, we should remove the staging package here
	# get rid of dummy libc.so
	#if [ -z "`file ${STAGING_DIR_TARGET}${target_libdir}/libc.so | grep "ASCII C program text"`" ]; then
	#	rm -rf ${STAGING_DIR_TARGET}${target_libdir}/libc.so
	#fi
}