* 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user