Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 441792 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +10 lines)
Line  Link Here
0
-- dev-lang/v8/v8-3.16.14.2.ebuild~
0
++ dev-lang/v8/v8-3.16.14.2.ebuild
Lines 23-29 Link Here
23
	tc-export AR CC CXX RANLIB
23
	tc-export AR CC CXX RANLIB
24
	export LINK=${CXX}
24
	export LINK=${CXX}
25
25
26
	local hardfp=off
26
	local armv7=false hardfp=off vfp3=off
27
27
28
	# Use target arch detection logic from bug #354601.
28
	# Use target arch detection logic from bug #354601.
29
	case ${CHOST} in
29
	case ${CHOST} in
Lines 40-45 Link Here
40
		arm*-*) myarch=arm ;;
40
		arm*-*) myarch=arm ;;
41
		*) die "Unrecognized CHOST: ${CHOST}"
41
		*) die "Unrecognized CHOST: ${CHOST}"
42
	esac
42
	esac
43
	if [[ ${CHOST} == armv7* ]] ; then
44
		armv7=true
45
		if [[ ${hardfp} == on ]] ; then
46
			vfp3=on
47
		fi
48
	fi
43
	mytarget=${myarch}.release
49
	mytarget=${myarch}.release
44
50
45
	# TODO: Add console=readline option once implemented upstream
51
	# TODO: Add console=readline option once implemented upstream
Lines 51-57 Link Here
51
		werror=no \
57
		werror=no \
52
		soname_version=${soname_version} \
58
		soname_version=${soname_version} \
53
		snapshot=on \
59
		snapshot=on \
60
		armv7=${armv7} \
54
		hardfp=${hardfp} \
61
		hardfp=${hardfp} \
62
		vfp3=${vfp3} \
55
		out/Makefile.${myarch} || die
63
		out/Makefile.${myarch} || die
56
}
64
}
57
65

Return to bug 441792