gcc: Get rid of lib64
This commit is contained in:
parent
877838870e
commit
e4a11b4d92
@ -196,6 +196,15 @@ postConfigure() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
preInstall() {
|
||||||
|
# Make ‘lib64’ a symlink to ‘lib’.
|
||||||
|
if [ -n "$is64bit" ]; then
|
||||||
|
mkdir -p $out/lib
|
||||||
|
ln -s lib $out/lib64
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
postInstall() {
|
postInstall() {
|
||||||
# Remove precompiled headers for now. They are very big and
|
# Remove precompiled headers for now. They are very big and
|
||||||
# probably not very useful yet.
|
# probably not very useful yet.
|
||||||
|
@ -406,6 +406,8 @@ stdenv.mkDerivation ({
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
inherit (stdenv) is64bit;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://gcc.gnu.org/;
|
homepage = http://gcc.gnu.org/;
|
||||||
license = "GPLv3+"; # runtime support libraries are typically LGPLv3+
|
license = "GPLv3+"; # runtime support libraries are typically LGPLv3+
|
||||||
|
Loading…
x
Reference in New Issue
Block a user