summaryrefslogtreecommitdiffhomepage
path: root/007.gcc.full.build
blob: 73eccbb92a6e5e9d2d873414fed080939cf5f958 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Order: stage1, runtime, full, native

if is_build_script_done finished; then
        exit 212;
elif [ "x${3}" = "xruntime" ]\
||   [ "x${3}" = "xfull" ]; then
	set_build_dir cbb-gcc-${PKG_GCC_VERSION} cross;
	cd ${BUILD_DIR};
	if [ "x${3}" = "xruntime" ]; then
		# GCC, compiler runtime.
		if ! is_build_script_done built; then
			make ${MAKEFLAGS} all-target-libgcc;
			set_build_script_done built -installed;
		fi;
		if ! is_build_script_done installed; then
			make ${MAKEFLAGS} install-target-libgcc;
			set_build_script_done installed finished;
		fi;
	elif [ "x${3}" = "xfull" ]; then
		# GCC, everything else.
		if ! is_build_script_done built1; then
			make ${MAKEFLAGS} all-target-libstdc++-v3;
			set_build_script_done built1 -installed1;
		fi;
		if ! is_build_script_done installed1; then
			make ${MAKEFLAGS} install-target-libstdc++-v3;
			set_build_script_done installed1 -built2;
		fi;
		if ! is_build_script_done built2; then
			make ${MAKEFLAGS};
			set_build_script_done built2 -installed2;
		fi;
		if ! is_build_script_done installed2; then
			make ${MAKEFLAGS} install;
			set_build_script_done installed2 finished;
		fi;
	fi;
else
	if [ "x${3}" = "xstage1" ]; then
		# GCC, stage1.
		set_build_dir cbb-gcc-${PKG_GCC_VERSION} cross;
		export	cbb_ldflags_for_target=--sysroot=${PREFIX_LVL}	\
			cbb_sysroot_for_libgcc=${PREFIX_LVL}		\
			cbb_target=${TARGET}				\
			cbb_neutral_libiberty=no			\
			cbb_xgcc_for_specs=${WORKDIR}/${BUILD_DIR}/gcc/xgcc;
		GCCTARGET_FLAGS="-DIN_TARGET_LIBRARY_BUILD --sysroot=${PREFIX_LVL}";
	elif [ "x${3}" = "xnative" ]; then
		# GCC, native.
		set_build_dir cbb-gcc-${PKG_GCC_VERSION} native;
		export 	cbb_ldflags_for_target=--sysroot=${PREFIX_LVL}	\
			cbb_sysroot_for_libgcc=${PREFIX_LVL}		\
			cbb_target=${TARGET}				\
			cbb_xgcc_for_specs=${TARGET}-gcc;
		GCCTARGET_FLAGS="-DIN_TARGET_LIBRARY_BUILD --sysroot=${PREFIX_LVL}";
	fi;
	GCCFLAGS="${CFLAGS:+${CFLAGS} }--include $(readlink -f ${WORKDIR}/cbb-gcc-${PKG_GCC_VERSION}/libc/cbb-musl-pe.h)";
	set_env_vars "${GCCFLAGS}" CFLAGS CFLAGS_FOR_BUILD CPPFLAGS_FOR_BUILD CXXFLAGS CXXFLAGS_FOR_BUILD;
	set_env_vars "${CFLAGS_FOR_BUILD}" cbb_cflags_for_stage1 cbb_cflags_for_stage2 cbb_cflags_for_stage3 cbb_cflags_for_stage4;
	set_env_vars "${GCCTARGET_FLAGS}" CFLAGS_FOR_TARGET CPPFLAGS_FOR_TARGET CXXFLAGS_FOR_TARGET LIBCFLAGS_FOR_TARGET XGCC_FLAGS_FOR_TARGET;
	export CFLAGS CXXFLAGS CFLAGS_FOR_BUILD CPPFLAGS_FOR_BUILD CXXFLAGS_FOR_BUILD CFLAGS_FOR_TARGET XGCC_FLAGS_FOR_TARGET CPPFLAGS_FOR_TARGET CXXFLAGS_FOR_TARGET LIBCFLAGS_FOR_TARGET;
	if ! is_build_script_done configured; then
		if [ "x${3}" = "xstage1" ]; then
			mkdir -p ${PREFIX_LVL}/include;
			[ \! -d ${PREFIX_LVL}/usr ] &&			\
				ln -s . ${PREFIX_LVL}/usr;
			_configure_args="--prefix=${PREFIX} --with-sysroot=${PREFIX_LVL}";
		elif [ "x${3}" = "xnative" ]; then
			mkdir -p ${PREFIX_LVL}/${TARGET};
			if [ \! -d ${PREFIX_LVL}/${TARGET}/usr ]; then
				ln -s . ${PREFIX_LVL}/${TARGET}/usr;
			fi;
			_configure_args="			\
				--host=x86_64-nt64-midipix	\
				--prefix=/			\
				--with-elf=${PREFIX_LVL}	\
				--with-gmp=${PREFIX_LVL}	\
				--with-mpc=${PREFIX_LVL}	\
				--with-mpfr=${PREFIX_LVL}	\
				--with-sysroot=";
		fi;
		rm_if_exists -m -c ${BUILD_DIR};
		../cbb-gcc-${PKG_GCC_VERSION}/configure		\
			--disable-bootstrap			\
			--disable-libmudflap			\
			--disable-multilib			\
			--disable-nls				\
			--disable-obsolete			\
			--disable-sjlj-exceptions		\
			--disable-symvers			\
			--enable-canonical-system-headers	\
			--enable-__cxa_atexit			\
			--enable-debug				\
			--enable-gnu-indirect-function		\
			--enable-gnu-unique-object		\
			--enable-initfini-array			\
			--enable-languages=c,c++,objc,lto	\
			--enable-libstdcxx-debug		\
			--enable-lto				\
			--enable-multiarch			\
			--enable-secureplt			\
			--enable-shared				\
			--enable-threads=posix			\
			--target=${TARGET}			\
			--with-fpmath=sse			\
			${_configure_args};
		set_build_script_done configured -built;
	else
		cd ${BUILD_DIR};
	fi;
	if ! is_build_script_done built; then
		if [ "x${3}" = "xstage1" ]; then
			make ${MAKEFLAGS} all-gcc;
		elif [ "x${3}" = "xnative" ]; then
			make -j18 all-gcc;
			make -j18 all-target-libgcc;
			make -j18 all-target-libstdc++-v3;
			make -j18 all;
		fi;
		set_build_script_done built -installed;
	fi;
	if ! is_build_script_done installed; then
		if [ "x${3}" = "xstage1" ]; then
			make ${MAKEFLAGS} install-gcc;
		elif [ "x${3}" = "xnative" ]; then
			make -j18 DESTDIR=${PREFIX_LVL} install;
		fi;
		set_build_script_done installed finished;
	fi;
fi;

# vim:filetype=sh