mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
* GCC 4.3.1. (g++ doesn't work yet though.)
svn path=/nixpkgs/trunk/; revision=12194
This commit is contained in:
parent
2e8df9e722
commit
34f583224d
98
pkgs/development/compilers/gcc-4.3/builder.sh
Normal file
98
pkgs/development/compilers/gcc-4.3/builder.sh
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
source $stdenv/setup
|
||||||
|
|
||||||
|
|
||||||
|
export NIX_FIXINC_DUMMY=$NIX_BUILD_TOP/dummy
|
||||||
|
mkdir $NIX_FIXINC_DUMMY
|
||||||
|
|
||||||
|
|
||||||
|
# libstdc++ needs this; otherwise it will use /lib/cpp, which is a Bad
|
||||||
|
# Thing.
|
||||||
|
export CPP="gcc -E"
|
||||||
|
|
||||||
|
|
||||||
|
if test "$noSysDirs" = "1"; then
|
||||||
|
|
||||||
|
if test -e $NIX_GCC/nix-support/orig-libc; then
|
||||||
|
|
||||||
|
# Figure out what extra flags to pass to the gcc compilers
|
||||||
|
# being generated to make sure that they use our glibc.
|
||||||
|
extraCFlags="$(cat $NIX_GCC/nix-support/libc-cflags)"
|
||||||
|
extraLDFlags="$(cat $NIX_GCC/nix-support/libc-ldflags) $(cat $NIX_GCC/nix-support/libc-ldflags-before)"
|
||||||
|
|
||||||
|
# Use *real* header files, otherwise a limits.h is generated
|
||||||
|
# that does not include Glibc's limits.h (notably missing
|
||||||
|
# SSIZE_MAX, which breaks the build).
|
||||||
|
export NIX_FIXINC_DUMMY=$(cat $NIX_GCC/nix-support/orig-libc)/include
|
||||||
|
|
||||||
|
else
|
||||||
|
# Hack: support impure environments.
|
||||||
|
extraCFlags="-isystem /usr/include"
|
||||||
|
extraLDFlags="-L/usr/lib64 -L/usr/lib"
|
||||||
|
export NIX_FIXINC_DUMMY=/usr/include
|
||||||
|
fi
|
||||||
|
|
||||||
|
extraCFlags="-g0 -I$gmp/include -I$mpfr/include $extraCFlags"
|
||||||
|
extraLDFlags="--strip-debug $extraLDFlags"
|
||||||
|
|
||||||
|
export NIX_EXTRA_CFLAGS=$extraCFlags
|
||||||
|
for i in $extraLDFlags; do
|
||||||
|
export NIX_EXTRA_LDFLAGS="$NIX_EXTRA_LDFLAGS -Wl,$i"
|
||||||
|
done
|
||||||
|
|
||||||
|
makeFlagsArray=( \
|
||||||
|
"${makeFlagsArray[@]}" \
|
||||||
|
NATIVE_SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \
|
||||||
|
SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \
|
||||||
|
LIMITS_H_TEST=true \
|
||||||
|
X_CFLAGS="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \
|
||||||
|
LDFLAGS="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \
|
||||||
|
LDFLAGS_FOR_TARGET="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
preConfigure=preConfigure
|
||||||
|
preConfigure() {
|
||||||
|
# Perform the build in a different directory.
|
||||||
|
mkdir ../build
|
||||||
|
cd ../build
|
||||||
|
configureScript=../$sourceRoot/configure
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
# Remove `fixincl' to prevent a retained dependency on the
|
||||||
|
# previous gcc.
|
||||||
|
rm -rf $out/libexec/gcc/*/*/install-tools
|
||||||
|
rm -rf $out/lib/gcc/*/*/install-tools
|
||||||
|
|
||||||
|
# Get rid of some "fixed" header files
|
||||||
|
rm -rf $out/lib/gcc/*/*/include/root
|
||||||
|
|
||||||
|
# Replace hard links for i686-pc-linux-gnu-gcc etc. with symlinks.
|
||||||
|
for i in $out/bin/*-gcc*; do
|
||||||
|
if cmp -s $out/bin/gcc $i; then
|
||||||
|
ln -sfn gcc $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for i in $out/bin/*-c++* $out/bin/*-g++*; do
|
||||||
|
if cmp -s $out/bin/g++ $i; then
|
||||||
|
ln -sfn g++ $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if test -z "$profiledCompiler"; then
|
||||||
|
buildFlags="bootstrap $buildFlags"
|
||||||
|
else
|
||||||
|
buildFlags="profiledbootstrap $buildFlags"
|
||||||
|
fi
|
||||||
|
|
||||||
|
genericBuild
|
68
pkgs/development/compilers/gcc-4.3/default.nix
Normal file
68
pkgs/development/compilers/gcc-4.3/default.nix
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
{ stdenv, fetchurl, noSysDirs
|
||||||
|
, langC ? true, langCC ? true, langF77 ? false
|
||||||
|
, profiledCompiler ? false
|
||||||
|
, staticCompiler ? false
|
||||||
|
, texinfo ? null
|
||||||
|
, gmp, mpfr
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert langC;
|
||||||
|
|
||||||
|
with import ../../../lib;
|
||||||
|
|
||||||
|
let version = "4.3.1"; in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "gcc-${version}";
|
||||||
|
builder = ./builder.sh;
|
||||||
|
|
||||||
|
src =
|
||||||
|
optional /*langC*/ true (fetchurl {
|
||||||
|
url = "mirror://gnu/gcc/gcc-${version}/gcc-core-${version}.tar.bz2";
|
||||||
|
sha256 = "18spk152j1vqa9bzhi93i7cgrmf7gncv0h1lm1mxxgn1ahrnnw67";
|
||||||
|
}) ++
|
||||||
|
optional langCC (fetchurl {
|
||||||
|
url = "mirror://gnu/gcc/gcc-${version}/gcc-g++-${version}.tar.bz2";
|
||||||
|
sha256 = "0r74s60hylr8xrnb2j3x0dmf3cnxxg609g4h07r6ida8vk33bd25";
|
||||||
|
}) ++
|
||||||
|
optional langF77 (fetchurl {
|
||||||
|
url = "mirror://gnu/gcc/gcc-${version}/gcc-fortran-${version}.tar.bz2";
|
||||||
|
sha256 = "1fl76sajlz1ihnsmqsbs3i8g0h77w9hm35pwb1s2w6p4h5xy5dnb";
|
||||||
|
});
|
||||||
|
|
||||||
|
patches =
|
||||||
|
[./pass-cxxcpp.patch]
|
||||||
|
++ optional noSysDirs [./no-sys-dirs.patch];
|
||||||
|
|
||||||
|
inherit noSysDirs profiledCompiler staticCompiler;
|
||||||
|
|
||||||
|
buildInputs = [texinfo gmp mpfr];
|
||||||
|
|
||||||
|
configureFlags = "
|
||||||
|
--disable-multilib
|
||||||
|
--disable-libstdcxx-pch
|
||||||
|
--with-system-zlib
|
||||||
|
--enable-languages=${
|
||||||
|
concatStrings (intersperse ","
|
||||||
|
( optional langC "c"
|
||||||
|
++ optional langCC "c++"
|
||||||
|
++ optional langF77 "f77"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
${if stdenv.isi686 then "--with-arch=i686" else ""}
|
||||||
|
";
|
||||||
|
|
||||||
|
NIX_EXTRA_LDFLAGS = if staticCompiler then "-static" else "";
|
||||||
|
|
||||||
|
inherit gmp mpfr;
|
||||||
|
#X_CFLAGS = "-I${gmp}/include -I${mpfr}/include -L${gmp}/lib -L${mpfr}/lib";
|
||||||
|
|
||||||
|
passthru = { inherit langC langCC langF77; };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://gcc.gnu.org/";
|
||||||
|
license = "GPL/LGPL";
|
||||||
|
description = "GNU Compiler Collection, 4.3.x";
|
||||||
|
};
|
||||||
|
}
|
73
pkgs/development/compilers/gcc-4.3/fortran.nix
Normal file
73
pkgs/development/compilers/gcc-4.3/fortran.nix
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
{ stdenv, fetchurl, noSysDirs
|
||||||
|
, langC ? true, langCC ? true, langF77 ? false
|
||||||
|
, profiledCompiler ? false
|
||||||
|
, staticCompiler ? false
|
||||||
|
, gmp ? null
|
||||||
|
, mpfr ? null
|
||||||
|
, texinfo ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert langC || langF77;
|
||||||
|
|
||||||
|
with import ../../../lib;
|
||||||
|
|
||||||
|
let version = "4.2.3"; in
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "gcc-${version}";
|
||||||
|
builder = if langF77 then ./fortran.sh else ./builder.sh;
|
||||||
|
|
||||||
|
src =
|
||||||
|
optional /*langC*/ true (fetchurl {
|
||||||
|
url = "mirror://gnu/gcc/gcc-${version}/gcc-core-${version}.tar.bz2";
|
||||||
|
sha256 = "04y84s46wzy4h44hpacf7vyla7b5zfc1qvdq3myvrhp82cp0bv4r";
|
||||||
|
}) ++
|
||||||
|
optional langCC (fetchurl {
|
||||||
|
url = "mirror://gnu/gcc/gcc-${version}/gcc-g++-${version}.tar.bz2";
|
||||||
|
sha256 = "0spzz549fifwv02ym33azzwizl0zkq5m1fgy88ccmcyzmwpgyzfq";
|
||||||
|
}) ++
|
||||||
|
optional langF77 (fetchurl {
|
||||||
|
url = "mirror://gnu/gcc/gcc-${version}/gcc-fortran-${version}.tar.bz2";
|
||||||
|
sha256 = "1l3ww6qymrkcfqlssb41a5fdnh6w2hqk0v2ijx56jgjbdnzawyp0";
|
||||||
|
});
|
||||||
|
|
||||||
|
patches =
|
||||||
|
optional noSysDirs [./no-sys-dirs.patch];
|
||||||
|
|
||||||
|
inherit noSysDirs profiledCompiler staticCompiler;
|
||||||
|
|
||||||
|
buildInputs = [gmp mpfr texinfo];
|
||||||
|
|
||||||
|
configureFlags = "
|
||||||
|
--disable-multilib
|
||||||
|
--disable-libstdcxx-pch
|
||||||
|
--with-system-zlib
|
||||||
|
--enable-languages=${
|
||||||
|
concatStrings (intersperse ","
|
||||||
|
( optional langC "c"
|
||||||
|
++ optional langCC "c++"
|
||||||
|
++ optional langF77 "fortran"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
${if stdenv.isi686 then "--with-arch=i686" else ""}
|
||||||
|
${if gmp != null then "--with-gmp=${gmp}" else ""}
|
||||||
|
${if mpfr != null then "--with-mpfr=${mpfr}" else ""}
|
||||||
|
";
|
||||||
|
|
||||||
|
makeFlags = if staticCompiler then "LDFLAGS=-static" else "";
|
||||||
|
|
||||||
|
passthru = { inherit langC langCC langF77; };
|
||||||
|
|
||||||
|
postInstall = "if test -f $out/bin/gfrotran; then ln -s $out/bin/gfortran $out/bin/g77; fi";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://gcc.gnu.org/";
|
||||||
|
license = "GPL/LGPL";
|
||||||
|
description = "GNU Compiler Collection, 4.2.x";
|
||||||
|
|
||||||
|
# Give the real GCC a lower priority than the GCC wrapper so that
|
||||||
|
# both can be installed at the same time.
|
||||||
|
priority = "7";
|
||||||
|
};
|
||||||
|
}
|
86
pkgs/development/compilers/gcc-4.3/fortran.sh
Normal file
86
pkgs/development/compilers/gcc-4.3/fortran.sh
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
source $stdenv/setup
|
||||||
|
|
||||||
|
|
||||||
|
export NIX_FIXINC_DUMMY=$NIX_BUILD_TOP/dummy
|
||||||
|
mkdir $NIX_FIXINC_DUMMY
|
||||||
|
|
||||||
|
export X_CFLAGS="-I${gmp}/include -I${mpfr}/include -L${gmp}/lib -L${mpfr}/lib";
|
||||||
|
|
||||||
|
# libstdc++ needs this; otherwise it will use /lib/cpp, which is a Bad
|
||||||
|
# Thing.
|
||||||
|
export CPP="gcc -E"
|
||||||
|
|
||||||
|
|
||||||
|
if test "$noSysDirs" = "1"; then
|
||||||
|
|
||||||
|
if test -e $NIX_GCC/nix-support/orig-libc; then
|
||||||
|
|
||||||
|
# Figure out what extra flags to pass to the gcc compilers
|
||||||
|
# being generated to make sure that they use our glibc.
|
||||||
|
extraCFlags="$(cat $NIX_GCC/nix-support/libc-cflags)"
|
||||||
|
extraLDFlags="$(cat $NIX_GCC/nix-support/libc-ldflags) $(cat $NIX_GCC/nix-support/libc-ldflags-before)"
|
||||||
|
|
||||||
|
# Use *real* header files, otherwise a limits.h is generated
|
||||||
|
# that does not include Glibc's limits.h (notably missing
|
||||||
|
# SSIZE_MAX, which breaks the build).
|
||||||
|
export NIX_FIXINC_DUMMY=$(cat $NIX_GCC/nix-support/orig-libc)/include
|
||||||
|
|
||||||
|
else
|
||||||
|
# Hack: support impure environments.
|
||||||
|
extraCFlags="-isystem /usr/include"
|
||||||
|
extraLDFlags="-L/usr/lib64 -L/usr/lib"
|
||||||
|
export NIX_FIXINC_DUMMY=/usr/include
|
||||||
|
fi
|
||||||
|
|
||||||
|
extraCFlags="-g0 $extraCFlags"
|
||||||
|
extraLDFlags="--strip-debug $extraLDFlags"
|
||||||
|
|
||||||
|
export NIX_EXTRA_CFLAGS=$extraCFlags
|
||||||
|
for i in $extraLDFlags; do
|
||||||
|
export NIX_EXTRA_LDFLAGS="$NIX_EXTRA_LDFLAGS -Wl,$i"
|
||||||
|
done
|
||||||
|
|
||||||
|
makeFlagsArray=( \
|
||||||
|
NATIVE_SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \
|
||||||
|
SYSTEM_HEADER_DIR="$NIX_FIXINC_DUMMY" \
|
||||||
|
LIMITS_H_TEST=true \
|
||||||
|
X_CFLAGS="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \
|
||||||
|
LDFLAGS="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \
|
||||||
|
LDFLAGS_FOR_TARGET="$NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS" \
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
preConfigure=preConfigure
|
||||||
|
preConfigure() {
|
||||||
|
# Perform the build in a different directory.
|
||||||
|
mkdir ../build
|
||||||
|
cd ../build
|
||||||
|
configureScript=../$sourceRoot/configure
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
# Remove `fixincl' to prevent a retained dependency on the
|
||||||
|
# previous gcc.
|
||||||
|
rm -rf $out/libexec/gcc/*/*/install-tools
|
||||||
|
|
||||||
|
# Get rid of some "fixed" header files
|
||||||
|
rm -rf $out/lib/gcc/*/*/include/root
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if test -z "$staticCompiler"; then
|
||||||
|
if test -z "$profiledCompiler"; then
|
||||||
|
buildFlags="bootstrap $buildFlags"
|
||||||
|
else
|
||||||
|
buildFlags="profiledbootstrap $buildFlags"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
genericBuild
|
132
pkgs/development/compilers/gcc-4.3/no-sys-dirs.patch
Normal file
132
pkgs/development/compilers/gcc-4.3/no-sys-dirs.patch
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
diff -ru gcc-4.3.1-orig/gcc/cppdefault.c gcc-4.3.1/gcc/cppdefault.c
|
||||||
|
--- gcc-4.3.1-orig/gcc/cppdefault.c 2007-07-26 10:37:01.000000000 +0200
|
||||||
|
+++ gcc-4.3.1/gcc/cppdefault.c 2008-06-25 17:48:23.000000000 +0200
|
||||||
|
@@ -41,6 +41,10 @@
|
||||||
|
# undef CROSS_INCLUDE_DIR
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#undef LOCAL_INCLUDE_DIR
|
||||||
|
+#undef SYSTEM_INCLUDE_DIR
|
||||||
|
+#undef STANDARD_INCLUDE_DIR
|
||||||
|
+
|
||||||
|
const struct default_include cpp_include_defaults[]
|
||||||
|
#ifdef INCLUDE_DEFAULTS
|
||||||
|
= INCLUDE_DEFAULTS;
|
||||||
|
diff -ru gcc-4.3.1-orig/gcc/gcc.c gcc-4.3.1/gcc/gcc.c
|
||||||
|
--- gcc-4.3.1-orig/gcc/gcc.c 2008-03-02 23:55:19.000000000 +0100
|
||||||
|
+++ gcc-4.3.1/gcc/gcc.c 2008-06-25 17:52:53.000000000 +0200
|
||||||
|
@@ -1478,10 +1478,10 @@
|
||||||
|
/* Default prefixes to attach to command names. */
|
||||||
|
|
||||||
|
#ifndef STANDARD_STARTFILE_PREFIX_1
|
||||||
|
-#define STANDARD_STARTFILE_PREFIX_1 "/lib/"
|
||||||
|
+#define STANDARD_STARTFILE_PREFIX_1 ""
|
||||||
|
#endif
|
||||||
|
#ifndef STANDARD_STARTFILE_PREFIX_2
|
||||||
|
-#define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
|
||||||
|
+#define STANDARD_STARTFILE_PREFIX_2 ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef CROSS_DIRECTORY_STRUCTURE /* Don't use these prefixes for a cross compiler. */
|
||||||
|
@@ -1515,8 +1515,8 @@
|
||||||
|
/* For native compilers, these are well-known paths containing
|
||||||
|
components that may be provided by the system. For cross
|
||||||
|
compilers, these paths are not used. */
|
||||||
|
-static const char *const standard_exec_prefix_1 = "/usr/libexec/gcc/";
|
||||||
|
-static const char *const standard_exec_prefix_2 = "/usr/lib/gcc/";
|
||||||
|
+static const char *const standard_exec_prefix_1 = "/no-such-path/";
|
||||||
|
+static const char *const standard_exec_prefix_2 = "/no-such-path/";
|
||||||
|
static const char *md_exec_prefix = MD_EXEC_PREFIX;
|
||||||
|
static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
|
||||||
|
static const char *md_startfile_prefix_1 = MD_STARTFILE_PREFIX_1;
|
||||||
|
diff -ru gcc-4.3.1-orig/gcc/Makefile.in gcc-4.3.1/gcc/Makefile.in
|
||||||
|
--- gcc-4.3.1-orig/gcc/Makefile.in 2008-05-11 20:54:15.000000000 +0200
|
||||||
|
+++ gcc-4.3.1/gcc/Makefile.in 2008-06-25 17:48:23.000000000 +0200
|
||||||
|
@@ -378,7 +378,11 @@
|
||||||
|
MD5_H = $(srcdir)/../include/md5.h
|
||||||
|
|
||||||
|
# Default native SYSTEM_HEADER_DIR, to be overridden by targets.
|
||||||
|
-NATIVE_SYSTEM_HEADER_DIR = /usr/include
|
||||||
|
+# Nix: we override NATIVE_SYSTEM_HEADER_DIR in order to prevent
|
||||||
|
+# `fixinc' from fixing header files in /usr/include. However,
|
||||||
|
+# NATIVE_SYSTEM_HEADER_DIR must point to an existing directory, so set
|
||||||
|
+# it to some dummy directory.
|
||||||
|
+NATIVE_SYSTEM_HEADER_DIR = $(NIX_FIXINC_DUMMY)
|
||||||
|
# Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
|
||||||
|
CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
|
||||||
|
|
||||||
|
@@ -3277,7 +3281,7 @@
|
||||||
|
-DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
|
||||||
|
-DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \
|
||||||
|
-DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
|
||||||
|
- -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \
|
||||||
|
+ -DLOCAL_INCLUDE_DIR=\"/no-such-dir\" \
|
||||||
|
-DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
|
||||||
|
-DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
|
||||||
|
-DPREFIX=\"$(prefix)/\" \
|
||||||
|
diff -ru gcc-4.3.1-orig/libgomp/configure gcc-4.3.1/libgomp/configure
|
||||||
|
--- gcc-4.3.1-orig/libgomp/configure 2008-01-24 17:23:13.000000000 +0100
|
||||||
|
+++ gcc-4.3.1/libgomp/configure 2008-06-26 11:23:49.000000000 +0200
|
||||||
|
@@ -21493,6 +21493,11 @@
|
||||||
|
# A language specific compiler.
|
||||||
|
CC=$lt_compiler
|
||||||
|
|
||||||
|
+# Ugly hack to get libmudflap (and possibly other libraries) to build.
|
||||||
|
+# Libtool filters out \`-B' flags when linking (why?), so the \`-B' flag
|
||||||
|
+# to Glibc gets lost. Here we forcibly add it to any invocation.
|
||||||
|
+CC="\$CC $NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS"
|
||||||
|
+
|
||||||
|
# Is the compiler the GNU compiler?
|
||||||
|
with_gcc=$GCC
|
||||||
|
|
||||||
|
Only in gcc-4.3.1/libgomp: configure~
|
||||||
|
diff -ru gcc-4.3.1-orig/libmudflap/configure gcc-4.3.1/libmudflap/configure
|
||||||
|
--- gcc-4.3.1-orig/libmudflap/configure 2008-01-24 17:30:08.000000000 +0100
|
||||||
|
+++ gcc-4.3.1/libmudflap/configure 2008-06-26 11:23:11.000000000 +0200
|
||||||
|
@@ -14229,6 +14229,11 @@
|
||||||
|
# A language specific compiler.
|
||||||
|
CC=$lt_compiler
|
||||||
|
|
||||||
|
+# Ugly hack to get libmudflap (and possibly other libraries) to build.
|
||||||
|
+# Libtool filters out \`-B' flags when linking (why?), so the \`-B' flag
|
||||||
|
+# to Glibc gets lost. Here we forcibly add it to any invocation.
|
||||||
|
+CC="\$CC $NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS"
|
||||||
|
+
|
||||||
|
# Is the compiler the GNU compiler?
|
||||||
|
with_gcc=$GCC
|
||||||
|
|
||||||
|
Only in gcc-4.3.1/libmudflap: configure~
|
||||||
|
diff -ru gcc-4.3.1-orig/libssp/configure gcc-4.3.1/libssp/configure
|
||||||
|
--- gcc-4.3.1-orig/libssp/configure 2008-01-24 17:33:29.000000000 +0100
|
||||||
|
+++ gcc-4.3.1/libssp/configure 2008-06-26 11:23:25.000000000 +0200
|
||||||
|
@@ -12142,6 +12142,11 @@
|
||||||
|
# A language specific compiler.
|
||||||
|
CC=$lt_compiler
|
||||||
|
|
||||||
|
+# Ugly hack to get libmudflap (and possibly other libraries) to build.
|
||||||
|
+# Libtool filters out \`-B' flags when linking (why?), so the \`-B' flag
|
||||||
|
+# to Glibc gets lost. Here we forcibly add it to any invocation.
|
||||||
|
+CC="\$CC $NIX_EXTRA_CFLAGS $NIX_EXTRA_LDFLAGS"
|
||||||
|
+
|
||||||
|
# Is the compiler the GNU compiler?
|
||||||
|
with_gcc=$GCC
|
||||||
|
|
||||||
|
Only in gcc-4.3.1/libssp: configure~
|
||||||
|
diff -ru gcc-4.3.1-orig/Makefile.in gcc-4.3.1/Makefile.in
|
||||||
|
--- gcc-4.3.1-orig/Makefile.in 2007-12-13 10:30:49.000000000 +0100
|
||||||
|
+++ gcc-4.3.1/Makefile.in 2008-06-25 17:48:23.000000000 +0200
|
||||||
|
@@ -405,6 +405,14 @@
|
||||||
|
@host_makefile_frag@
|
||||||
|
###
|
||||||
|
|
||||||
|
+CFLAGS += $(NIX_EXTRA_CFLAGS)
|
||||||
|
+CPPFLAGS_FOR_TARGET += $(NIX_EXTRA_CFLAGS)
|
||||||
|
+CXXFLAGS += $(NIX_EXTRA_CFLAGS)
|
||||||
|
+LDFLAGS += $(NIX_EXTRA_LDFLAGS)
|
||||||
|
+LDFLAGS_FOR_TARGET += $(NIX_EXTRA_LDFLAGS)
|
||||||
|
+BOOT_CFLAGS += $(NIX_EXTRA_CFLAGS)
|
||||||
|
+BOOT_LDFLAGS += $(NIX_EXTRA_LDFLAGS)
|
||||||
|
+
|
||||||
|
# This is the list of directories that may be needed in RPATH_ENVVAR
|
||||||
|
# so that prorgams built for the target machine work.
|
||||||
|
TARGET_LIB_PATH = $(TARGET_LIB_PATH_libstdc++-v3)$(TARGET_LIB_PATH_libmudflap)$(TARGET_LIB_PATH_libssp)$(TARGET_LIB_PATH_libgomp)$(HOST_LIB_PATH_gcc)
|
21
pkgs/development/compilers/gcc-4.3/pass-cxxcpp.patch
Normal file
21
pkgs/development/compilers/gcc-4.3/pass-cxxcpp.patch
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
diff -rc gcc-orig/Makefile.in gcc-4.1.1/Makefile.in
|
||||||
|
*** gcc-orig/Makefile.in Wed Jun 21 13:40:23 2006
|
||||||
|
--- gcc-4.1.1/Makefile.in Wed Jun 21 14:19:44 2006
|
||||||
|
***************
|
||||||
|
*** 213,219 ****
|
||||||
|
RAW_CXX_TARGET_EXPORTS = \
|
||||||
|
$(BASE_TARGET_EXPORTS) \
|
||||||
|
CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \
|
||||||
|
! CXX="$(RAW_CXX_FOR_TARGET)"; export CXX;
|
||||||
|
|
||||||
|
NORMAL_TARGET_EXPORTS = \
|
||||||
|
$(BASE_TARGET_EXPORTS) \
|
||||||
|
--- 213,220 ----
|
||||||
|
RAW_CXX_TARGET_EXPORTS = \
|
||||||
|
$(BASE_TARGET_EXPORTS) \
|
||||||
|
CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \
|
||||||
|
! CXX="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD)"; export CXX; \
|
||||||
|
! CXXCPP="$(RAW_CXX_FOR_TARGET) $(CFLAGS_FOR_BUILD) -E"; export CXXCPP;
|
||||||
|
|
||||||
|
NORMAL_TARGET_EXPORTS = \
|
||||||
|
$(BASE_TARGET_EXPORTS) \
|
@ -1,17 +1,17 @@
|
|||||||
args: with args;
|
{stdenv, fetchurl, gmp}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "mpfr-2.3.0";
|
name = "mpfr-2.3.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.mpfr.org/mpfr-current/mpfr-2.3.1.tar.bz2;
|
url = http://www.mpfr.org/mpfr-current/mpfr-2.3.1.tar.bz2;
|
||||||
sha256 = "0c44va4plxfd9zm7aa24173im38svnb15lbxql5hvxbc9bgzjmyq";
|
sha256 = "0c44va4plxfd9zm7aa24173im38svnb15lbxql5hvxbc9bgzjmyq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =[gmp];
|
buildInputs = [gmp];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "
|
homepage = http://www.mpfr.org/;
|
||||||
Multi Precision Floating arithmetic with correct Rounding.
|
description = "Library for multiple-precision floating-point arithmetic";
|
||||||
";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1333,6 +1333,11 @@ let pkgs = rec {
|
|||||||
profiledCompiler = true;
|
profiledCompiler = true;
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
gcc43 = lowPrio (wrapGCC (import ../development/compilers/gcc-4.3 {
|
||||||
|
inherit fetchurl stdenv texinfo gmp mpfr noSysDirs;
|
||||||
|
profiledCompiler = false;
|
||||||
|
}));
|
||||||
|
|
||||||
gccApple = wrapGCC (import ../development/compilers/gcc-apple {
|
gccApple = wrapGCC (import ../development/compilers/gcc-apple {
|
||||||
inherit fetchurl stdenv noSysDirs;
|
inherit fetchurl stdenv noSysDirs;
|
||||||
profiledCompiler = true;
|
profiledCompiler = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user