summaryrefslogtreecommitdiff
path: root/build-essential.morph
Commit message (Collapse)AuthorAgeFilesLines
* Re-order system and stratum morphology fields.Richard Maw2014-02-171-112/+109
| | | | This is the new canonical ordering.
* Move build-essential comments to description fieldRichard Ipsum2013-11-071-33/+31
|
* Delete genivi-staging and reorder morph contentsJonathan Maw2013-09-301-310/+292
|
* Remove tab character that snuck inRichard Maw2013-08-231-1/+1
| | | | Rubber-stamped-by: Richard Maw
* Merge branch 'baserock/richardmaw/S8564/ro-staging-area'Richard Maw2013-08-231-0/+32
|\ | | | | | | Reviewed-by: Lars Wirzenius
| * Rework to allow a read-only rootfsRichard Maw2013-08-151-283/+262
|/ | | | | | | | | | | | | | The diff is unfortunately useless as the build-essential has lost all formatting, but apart from the usual changes to use different branches, two new chunks have been added. Before stage2-gcc there is now stage2-gcc-fixed-headers, which updates stage1-gcc's internal headers to use limits from system headers. This was previously done at the beginning of stage2-gcc, but required changes to the staging area. There is now also stage2-reset-specs before stage3, which does a nasty hack to prevent gcc using the sysroot specs in the chroot.
* Replace JSON morphologies with YAML.Richard Maw2013-07-021-297/+287
|
* Merge remote-tracking branches 'origin/samthursfield/comment-fix' and ↵Richard Maw2013-05-281-28/+4
|\ | | | | | | | | | | 'origin/baserock/richardmaw/inspect-zlib' Reviewed-by: Daniel Silverstone, briefly in person.
| * build-essential: remove stage2-zlibRichard Maw2013-05-241-30/+6
|/ | | | | | | | | | | | | | | | | | | | | | | The stage 1 toolchain is built with --disable-shared, which means it is unable to build shared libraries. This causes it to include symbols from libgcc in the zlib shared object. This causes problems in pass 3, since by then we have a toolchain that is suitable for building shared objects, so it doesn't include libgcc symbols in zlib. This causes problems while building gcc, since cc1 is compiled against the zlib in /tools, but is run with the zlib in /usr, so it fails to run due to missing symbols, which would otherwise come from libgcc_s or be copiled in as part of libgcc.a. stage 2 zlib was originally added to avoid gcc and binutils needing to use their embedded copy, which would improve compile speed slightly and the other reasons to prefer shared objects. However, the bootstrap is fragile enough without it, it may be the case that gcc and binutils prefer to embed zlib for precisely these reasons.
* Fix up refs after mergeSam Thursfield2013-03-151-21/+21
| | | | I'm not sure how these got lost.
* Add zlib to build-essentialSam Thursfield2013-03-141-8/+53
| | | | | | It's never good to have multiple versions of the same library in use on a system, so we should avoid using the versions of ZLib that are bundled in the GCC and Binutils releases.
* Add new build-essential morphologySam Thursfield2013-03-141-23/+238
|
* Use the build-essential branch of gccJonathan Maw2013-03-051-1/+1
| | | | | | | The build-essential branch of gcc is made to build with a build-essential staging-filler, while the master branch isn't. Reviewed-by: Lars Wirzenius <lars.wirzenius@codethink.co.uk>
* Fix syntax error in build-essentialJonathan Maw2013-03-011-1/+1
|
* Use 'gcc' , since gcc should now have --enable-sharedJonathan Maw2013-03-011-1/+1
|
* Merge the GENIVI baseline morphsJonathan Maw2013-03-011-2/+2
|
* Reorganise morphologies for build-essentialSam Thursfield2013-01-241-0/+61
This patch rewrites the Baserock morphologies so that they can be built using a minimal "build-essential" staging filler, as described in my previous patch mail. The Baserock system is split up into three strata: - build-essential: the minimum set of tools that can rebuild itself (from tarballs) - core: the remaining set of components necessary to produce a Baserock system which can rebuild itself from source - tools: auxiliary development tools and libraries The 'build-essential' stratum does not specify any build dependencies, because it expects to be built with a staging filler containing itself. In effect, the stratum has a circular dependency on itself, which we solve by using a staging filler. The 'core' stratum depends on only on 'build-essential'. This ensures that all build dependencies between chunks in 'core' are explicit. These strata can also be built with the staging filler from the water-bomb release. The distinction between a base and a devel system is no longer defined by the 'foundation' and 'devel' strata (in practice these had various hidden build dependencies between each other). The size of a base system is larger than before, due to more development tools being in 'core'.