* 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:
parent
2bf90b3fbf
commit
d91c216e2c
@ -45,6 +45,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
preConfigure=preConfigure
|
||||||
preConfigure() {
|
preConfigure() {
|
||||||
|
|
||||||
# Determine the frontends to build.
|
# Determine the frontends to build.
|
||||||
@ -64,7 +65,13 @@ preConfigure() {
|
|||||||
configureFlags="--enable-languages=$langs"
|
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
|
if test -z "$profiledCompiler"; then
|
||||||
|
@ -206,7 +206,7 @@ rec {
|
|||||||
inherit fetchurl stdenv noSysDirs;
|
inherit fetchurl stdenv noSysDirs;
|
||||||
};
|
};
|
||||||
|
|
||||||
gcc340 = (import ../build-support/gcc-wrapper) {
|
gcc34 = (import ../build-support/gcc-wrapper) {
|
||||||
nativeTools = false;
|
nativeTools = false;
|
||||||
nativeGlibc = false;
|
nativeGlibc = false;
|
||||||
gcc = (import ../development/compilers/gcc-3.4) {
|
gcc = (import ../development/compilers/gcc-3.4) {
|
||||||
|
@ -29,6 +29,7 @@ let {
|
|||||||
bisonnew
|
bisonnew
|
||||||
flexnew
|
flexnew
|
||||||
gcc
|
gcc
|
||||||
|
gcc34
|
||||||
aterm
|
aterm
|
||||||
strategoxt
|
strategoxt
|
||||||
ghc
|
ghc
|
||||||
|
Loading…
Reference in New Issue
Block a user