* Include gcc 3.4.x in the nixpkgs release.

* Remove precompiled headers, which are nice except that
  A) they don't work; and
  B) they make gcc take up 270% more disk space.

svn path=/nixpkgs/trunk/; revision=1129
This commit is contained in:
Eelco Dolstra 2004-07-05 12:20:23 +00:00
parent 2bf90b3fbf
commit d91c216e2c
3 changed files with 10 additions and 2 deletions

View file

@ -45,6 +45,7 @@ else
fi
preConfigure=preConfigure
preConfigure() {
# Determine the frontends to build.
@ -64,7 +65,13 @@ preConfigure() {
configureFlags="--enable-languages=$langs"
}
preConfigure=preConfigure
postInstall=postInstall
postInstall() {
# Remove precompiled headers for now. They are very big and
# probably not very useful yet.
find $out/include -name "*.gch" -exec rm -rf {} \; -prune
}
if test -z "$profiledCompiler"; then

View file

@ -206,7 +206,7 @@ rec {
inherit fetchurl stdenv noSysDirs;
};
gcc340 = (import ../build-support/gcc-wrapper) {
gcc34 = (import ../build-support/gcc-wrapper) {
nativeTools = false;
nativeGlibc = false;
gcc = (import ../development/compilers/gcc-3.4) {

View file

@ -29,6 +29,7 @@ let {
bisonnew
flexnew
gcc
gcc34
aterm
strategoxt
ghc