parent
cb07844c9d
commit
d2b76e68d0
|
@ -1,83 +0,0 @@
|
||||||
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 $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() {
|
|
||||||
# Perform the build in a different directory.
|
|
||||||
mkdir ../build
|
|
||||||
cd ../build
|
|
||||||
configureScript=../$sourceRoot/configure
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
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
|
|
|
@ -1,71 +0,0 @@
|
||||||
{ stdenv, fetchurl, noSysDirs
|
|
||||||
, langC ? true, langCC ? true, langFortran ? false
|
|
||||||
, profiledCompiler ? false
|
|
||||||
, staticCompiler ? false
|
|
||||||
, gmp ? null
|
|
||||||
, mpfr ? null
|
|
||||||
, texinfo ? null
|
|
||||||
, name ? "gcc"
|
|
||||||
}:
|
|
||||||
|
|
||||||
assert langC || langFortran;
|
|
||||||
|
|
||||||
with stdenv.lib;
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "${name}-4.1.2";
|
|
||||||
|
|
||||||
builder = ./builder.sh;
|
|
||||||
|
|
||||||
src =
|
|
||||||
optional /*langC*/ true (fetchurl {
|
|
||||||
url = mirror://gnu/gcc/gcc-4.1.2/gcc-core-4.1.2.tar.bz2;
|
|
||||||
sha256 = "07binc1hqlr0g387zrg5sp57i12yzd5ja2lgjb83bbh0h3gwbsbv";
|
|
||||||
}) ++
|
|
||||||
optional /*langCC*/ true (fetchurl {
|
|
||||||
url = mirror://gnu/gcc/gcc-4.1.2/gcc-g++-4.1.2.tar.bz2;
|
|
||||||
sha256 = "1qm2izcxna10jai0v4s41myki0xkw9174qpl6k1rnrqhbx0sl1hc";
|
|
||||||
}) ++
|
|
||||||
optional langFortran (fetchurl {
|
|
||||||
url = mirror://gnu/gcc/gcc-4.1.2/gcc-fortran-4.1.2.tar.bz2;
|
|
||||||
sha256 = "0772dhmm4gc10420h0d0mfkk2sirvjmjxz8j0ywm8wp5qf8vdi9z";
|
|
||||||
});
|
|
||||||
|
|
||||||
patches =
|
|
||||||
optional noSysDirs [./no-sys-dirs.patch];
|
|
||||||
|
|
||||||
inherit noSysDirs profiledCompiler staticCompiler;
|
|
||||||
|
|
||||||
buildInputs = [gmp mpfr texinfo];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
configureFlags = "
|
|
||||||
--disable-multilib
|
|
||||||
--disable-libstdcxx-pch
|
|
||||||
--with-system-zlib
|
|
||||||
--enable-languages=${
|
|
||||||
concatStrings (intersperse ","
|
|
||||||
( optional langC "c"
|
|
||||||
++ optional langCC "c++"
|
|
||||||
++ optional langFortran "fortran"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
${if stdenv.isi686 then "--with-arch=i686" else ""}
|
|
||||||
";
|
|
||||||
|
|
||||||
makeFlags = if staticCompiler then "LDFLAGS=-static" else "";
|
|
||||||
|
|
||||||
passthru = { inherit langC langCC langFortran; };
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "http://gcc.gnu.org/";
|
|
||||||
license = "GPL/LGPL";
|
|
||||||
description = "GNU Compiler Collection, 4.1.x";
|
|
||||||
|
|
||||||
# Give the real GCC a lower priority than the GCC wrapper so that
|
|
||||||
# both can be installed at the same time.
|
|
||||||
priority = "7";
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,177 +0,0 @@
|
||||||
diff -rc gcc-4.1.2-orig/Makefile.in gcc-4.1.2/Makefile.in
|
|
||||||
*** gcc-4.1.2-orig/Makefile.in Tue Apr 4 23:03:05 2006
|
|
||||||
--- gcc-4.1.2/Makefile.in Wed May 23 11:35:41 2007
|
|
||||||
***************
|
|
||||||
*** 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) \
|
|
||||||
***************
|
|
||||||
*** 352,357 ****
|
|
||||||
--- 353,366 ----
|
|
||||||
@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)$(HOST_LIB_PATH_gcc)
|
|
||||||
diff -rc gcc-4.1.2-orig/gcc/Makefile.in gcc-4.1.2/gcc/Makefile.in
|
|
||||||
*** gcc-4.1.2-orig/gcc/Makefile.in Wed Nov 1 15:40:44 2006
|
|
||||||
--- gcc-4.1.2/gcc/Makefile.in Wed May 23 11:35:41 2007
|
|
||||||
***************
|
|
||||||
*** 383,389 ****
|
|
||||||
MD5_H = $(srcdir)/../include/md5.h
|
|
||||||
|
|
||||||
# Default native SYSTEM_HEADER_DIR, to be overridden by targets.
|
|
||||||
! NATIVE_SYSTEM_HEADER_DIR = /usr/include
|
|
||||||
# Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
|
|
||||||
CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
|
|
||||||
|
|
||||||
--- 383,393 ----
|
|
||||||
MD5_H = $(srcdir)/../include/md5.h
|
|
||||||
|
|
||||||
# Default native SYSTEM_HEADER_DIR, to be overridden by targets.
|
|
||||||
! # 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@
|
|
||||||
|
|
||||||
***************
|
|
||||||
*** 3007,3013 ****
|
|
||||||
-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)\" \
|
|
||||||
-DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
|
|
||||||
-DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
|
|
||||||
@TARGET_SYSTEM_ROOT_DEFINE@
|
|
||||||
--- 3011,3017 ----
|
|
||||||
-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=\"/no-such-dir\" \
|
|
||||||
-DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
|
|
||||||
-DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
|
|
||||||
@TARGET_SYSTEM_ROOT_DEFINE@
|
|
||||||
diff -rc gcc-4.1.2-orig/gcc/cppdefault.c gcc-4.1.2/gcc/cppdefault.c
|
|
||||||
*** gcc-4.1.2-orig/gcc/cppdefault.c Sat Jun 25 04:02:01 2005
|
|
||||||
--- gcc-4.1.2/gcc/cppdefault.c Wed May 23 11:35:41 2007
|
|
||||||
***************
|
|
||||||
*** 41,46 ****
|
|
||||||
--- 41,50 ----
|
|
||||||
# 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 -rc gcc-4.1.2-orig/gcc/gcc.c gcc-4.1.2/gcc/gcc.c
|
|
||||||
*** gcc-4.1.2-orig/gcc/gcc.c Tue Nov 7 15:26:21 2006
|
|
||||||
--- gcc-4.1.2/gcc/gcc.c Wed May 23 11:35:41 2007
|
|
||||||
***************
|
|
||||||
*** 1435,1444 ****
|
|
||||||
/* Default prefixes to attach to command names. */
|
|
||||||
|
|
||||||
#ifndef STANDARD_STARTFILE_PREFIX_1
|
|
||||||
! #define STANDARD_STARTFILE_PREFIX_1 "/lib/"
|
|
||||||
#endif
|
|
||||||
#ifndef STANDARD_STARTFILE_PREFIX_2
|
|
||||||
! #define STANDARD_STARTFILE_PREFIX_2 "/usr/lib/"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
|
|
||||||
--- 1435,1444 ----
|
|
||||||
/* Default prefixes to attach to command names. */
|
|
||||||
|
|
||||||
#ifndef STANDARD_STARTFILE_PREFIX_1
|
|
||||||
! #define STANDARD_STARTFILE_PREFIX_1 ""
|
|
||||||
#endif
|
|
||||||
#ifndef STANDARD_STARTFILE_PREFIX_2
|
|
||||||
! #define STANDARD_STARTFILE_PREFIX_2 ""
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CROSS_COMPILE /* Don't use these prefixes for a cross compiler. */
|
|
||||||
***************
|
|
||||||
*** 1459,1466 ****
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
|
|
||||||
! 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 *md_exec_prefix = MD_EXEC_PREFIX;
|
|
||||||
|
|
||||||
static const char *md_startfile_prefix = MD_STARTFILE_PREFIX;
|
|
||||||
--- 1459,1466 ----
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static const char *const standard_exec_prefix = STANDARD_EXEC_PREFIX;
|
|
||||||
! 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;
|
|
||||||
diff -rc gcc-4.1.2-orig/ltcf-cxx.sh gcc-4.1.2/ltcf-cxx.sh
|
|
||||||
*** gcc-4.1.2-orig/ltcf-cxx.sh Sat Jul 16 04:30:53 2005
|
|
||||||
--- gcc-4.1.2/ltcf-cxx.sh Wed May 23 11:35:41 2007
|
|
||||||
***************
|
|
||||||
*** 989,995 ****
|
|
||||||
# the conftest object file.
|
|
||||||
pre_test_object_deps_done=no
|
|
||||||
|
|
||||||
! for p in `eval $output_verbose_link_cmd`; do
|
|
||||||
|
|
||||||
case $p in
|
|
||||||
|
|
||||||
--- 989,995 ----
|
|
||||||
# the conftest object file.
|
|
||||||
pre_test_object_deps_done=no
|
|
||||||
|
|
||||||
! for p in `true`; do
|
|
||||||
|
|
||||||
case $p in
|
|
||||||
|
|
||||||
diff -rc gcc-4.1.2-orig/ltconfig gcc-4.1.2/ltconfig
|
|
||||||
*** gcc-4.1.2-orig/ltconfig Tue Jul 4 22:30:34 2006
|
|
||||||
--- gcc-4.1.2/ltconfig Wed May 23 11:35:41 2007
|
|
||||||
***************
|
|
||||||
*** 2322,2327 ****
|
|
||||||
--- 2322,2332 ----
|
|
||||||
# A language-specific compiler.
|
|
||||||
CC=$CC
|
|
||||||
|
|
||||||
+ # 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 C compiler?
|
|
||||||
with_gcc=$with_gcc
|
|
||||||
|
|
|
@ -1930,13 +1930,6 @@ let
|
||||||
# expects a single digit after the dot. As a workaround, we feed
|
# expects a single digit after the dot. As a workaround, we feed
|
||||||
# GCC with Texinfo 4.9. Stupid bug, hackish workaround.
|
# GCC with Texinfo 4.9. Stupid bug, hackish workaround.
|
||||||
|
|
||||||
gcc41 = wrapGCC (makeOverridable (import ../development/compilers/gcc/4.1) {
|
|
||||||
inherit fetchurl noSysDirs gmp mpfr;
|
|
||||||
stdenv = overrideGCC stdenv gcc42;
|
|
||||||
texinfo = texinfo49;
|
|
||||||
profiledCompiler = false;
|
|
||||||
});
|
|
||||||
|
|
||||||
gcc42 = wrapGCC (makeOverridable (import ../development/compilers/gcc/4.2) {
|
gcc42 = wrapGCC (makeOverridable (import ../development/compilers/gcc/4.2) {
|
||||||
inherit fetchurl stdenv noSysDirs;
|
inherit fetchurl stdenv noSysDirs;
|
||||||
profiledCompiler = false;
|
profiledCompiler = false;
|
||||||
|
@ -2159,21 +2152,15 @@ let
|
||||||
stdenv = allStdenvs.stdenvNative;
|
stdenv = allStdenvs.stdenvNative;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/*
|
||||||
gccupc40 = wrapGCCUPC (import ../development/compilers/gcc-upc-4.0 {
|
gccupc40 = wrapGCCUPC (import ../development/compilers/gcc-upc-4.0 {
|
||||||
inherit fetchurl stdenv bison autoconf gnum4 noSysDirs;
|
inherit fetchurl stdenv bison autoconf gnum4 noSysDirs;
|
||||||
texinfo = texinfo49;
|
texinfo = texinfo49;
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
gfortran = gfortran46;
|
gfortran = gfortran46;
|
||||||
|
|
||||||
gfortran41 = wrapGCC (gcc41.gcc.override {
|
|
||||||
name = "gfortran";
|
|
||||||
langFortran = true;
|
|
||||||
langCC = false;
|
|
||||||
langC = false;
|
|
||||||
inherit gmp mpfr;
|
|
||||||
});
|
|
||||||
|
|
||||||
gfortran42 = wrapGCC (gcc42.gcc.override {
|
gfortran42 = wrapGCC (gcc42.gcc.override {
|
||||||
name = "gfortran";
|
name = "gfortran";
|
||||||
langFortran = true;
|
langFortran = true;
|
||||||
|
@ -8859,9 +8846,7 @@ let
|
||||||
|
|
||||||
foomatic_filters = callPackage ../misc/drivers/foomatic-filters {};
|
foomatic_filters = callPackage ../misc/drivers/foomatic-filters {};
|
||||||
|
|
||||||
freestyle = callPackage ../misc/freestyle {
|
freestyle = callPackage ../misc/freestyle { };
|
||||||
#stdenv = overrideGCC stdenv gcc41;
|
|
||||||
};
|
|
||||||
|
|
||||||
gajim = builderDefsPackage (import ../applications/networking/instant-messengers/gajim) {
|
gajim = builderDefsPackage (import ../applications/networking/instant-messengers/gajim) {
|
||||||
inherit perl intltool pyGtkGlade gettext pkgconfig makeWrapper pygobject
|
inherit perl intltool pyGtkGlade gettext pkgconfig makeWrapper pygobject
|
||||||
|
|
|
@ -50,7 +50,6 @@ with (import ./release-lib.nix);
|
||||||
gcc = all;
|
gcc = all;
|
||||||
gcc33 = linux;
|
gcc33 = linux;
|
||||||
gcc34 = linux;
|
gcc34 = linux;
|
||||||
gcc41 = linux;
|
|
||||||
gcc42 = linux;
|
gcc42 = linux;
|
||||||
gcc43_multi = ["x86_64-linux"];
|
gcc43_multi = ["x86_64-linux"];
|
||||||
gcc44 = linux;
|
gcc44 = linux;
|
||||||
|
|
|
@ -93,7 +93,6 @@ with (import ./release-lib.nix);
|
||||||
gcc = linux;
|
gcc = linux;
|
||||||
gcc33 = linux;
|
gcc33 = linux;
|
||||||
gcc34 = linux;
|
gcc34 = linux;
|
||||||
gcc41 = linux;
|
|
||||||
gcc42 = linux;
|
gcc42 = linux;
|
||||||
gcc43_multi = ["x86_64-linux"];
|
gcc43_multi = ["x86_64-linux"];
|
||||||
gcc44 = linux;
|
gcc44 = linux;
|
||||||
|
|
Loading…
Reference in New Issue