mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00

Add support to build MinGW tools using Cygwin. This is a Canadian cross build. Do not expand the directives when parsing a configuration file. Hold in the package object the text as read from the configuration file. Still parse the logic but leave the macros. This allows a configuration to be varied when the build happens. The Canadian cross uses this to build a build compiler used to build a Cxc runtime. Add Cxc support to the build module. In the defaults add rm and rmfile macros, add Cxc paths and pre-build script code. In the setbuilder check for a Cxc build and if so and the package allow Cxc build the build host version then the host target version. Add cygiwn support to the defaults processing and to the Windows module.
38 lines
951 B
INI
38 lines
951 B
INI
#
|
|
# GCC 4.4.x Version 1.
|
|
#
|
|
# This configuration file configure's, make's and install's gcc. It uses
|
|
# newlib, MPFR, MPC, and GMP in a one-tree build configuration.
|
|
#
|
|
|
|
#
|
|
# Source
|
|
#
|
|
#
|
|
# GCC core and G++
|
|
#
|
|
Source0: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-core-%{gcc_version}.tar.bz2
|
|
VersionContro0: git clone git://gcc.gnu.org/git/gcc.git
|
|
|
|
%if %{enable_cxx}
|
|
Source1: ftp://ftp.gnu.org/gnu/gcc/gcc-%{gcc_version}/gcc-g++-%{gcc_version}.tar.gz
|
|
%endif
|
|
|
|
#
|
|
# Newlib
|
|
#
|
|
Source10: ftp://sourceware.org/pub/newlib/newlib-%{newlib_version}.tar.gz
|
|
VersionControl10: cvs -z 9 -d :pserver:anoncvs@sources.redhat.com:/cvs/src co newlib
|
|
|
|
#
|
|
# Packages GCC requires
|
|
#
|
|
Source20: http://www.mpfr.org/mpfr-%{mpfr_version}/mpfr-%{mpfr_version}.tar.bz2
|
|
Source21: http://www.multiprecision.org/mpc/download/mpc-%{mpc_version}.tar.gz
|
|
Source22: ftp://ftp.gnu.org/gnu/gmp/gmp-%{gmp_version}.tar.bz2
|
|
|
|
#
|
|
# GCC Common build script.
|
|
#
|
|
%include %{_configdir}/gcc-common-1.cfg
|