summaryrefslogtreecommitdiff
path: root/gcc/gcc-cross_3.3.1.oe
blob: bb6c572bd2a11e9592a61a05f921418c7c1eabe4 (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
43
44
45
46
47
48
49
50
51
52
inherit cross
include gcc_${PV}.oe

DEPENDS := virtual/${TARGET_SYS}-binutils \
           virtual/glibc virtual/glibc-headers patcher
PROVIDES := virtual/${TARGET_SYS}-gcc \
            virtual/${TARGET_SYS}-g++

PACKAGES =

EXTRA_OECONF := --with-local-prefix=${CROSS_DIR}/usr/local \
                --with-gxx-include-dir=${CROSS_DIR}/${TARGET_SYS}/include/c++ \
                --enable-target-optspace \
                --with-gnu-ld \
                --enable-languages=c,c++ \
                --enable-shared \
                --enable-multilib \
                --program-prefix=${TARGET_SYS}-

export CPPFLAGS =
export CXXFLAGS =
export CFLAGS =
export LDFLAGS =

do_configure_prepend () {
	export CC="${BUILD_CC}"
	export AR="${TARGET_SYS}-ar"
	export RANLIB="${TARGET_SYS}-ranlib"
	export LD="${TARGET_SYS}-ld"
	export NM="${TARGET_SYS}-nm"
}

do_compile_prepend () {
	export CC="${BUILD_CC}"
	export AR_FOR_TARGET="${TARGET_SYS}-ar"
	export RANLIB_FOR_TARGET="${TARGET_SYS}-ranlib"
	export LD_FOR_TARGET="${TARGET_SYS}-ld"
	export NM_FOR_TARGET="${TARGET_SYS}-nm"
	export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc"
}

do_stage_append () {
#	# Cleanup after gcc's --program-prefix failing..
#	( cd ${CROSS_DIR}/bin ; for p in ${TARGET_SYS}-* ; do
#		mv $p `echo $p | sed -e s,${TARGET_SYS},${TARGET_ARCH}-uclibc,`
#	done )

	rm -f ${CROSS_DIR}/bin/gccbug ${CROSS_DIR}/bin/gcov
	for d in info man share/doc share/locale ; do
		rm -rf ${CROSS_DIR}/$d
	done
}