[Nix-dev] gcc broken for FORTRAN build
Pjotr Prins
pjotr2008 at thebird.nl
Wed Aug 6 09:34:24 CEST 2008
Marc has sent me a coreutils patch that works (attached). Apparently
building on an older Kernel compiles in the functionality (using
recent kernel headers) - which breaks that build.
What do I do with it? Can we automatically patch when an older kernel
is running? - probably a bad idea because binary downloads will
perhaps core dump on older kernels. Make the patch standard? - not a
good idea either - as we loose functionality.
The thing is - users (like me) will have older kernels. h e l p.
Pj.
On Tue, Aug 05, 2008 at 05:48:47PM +0200, Pjotr Prins wrote:
> Using the latest Nix.
>
> When building gcc-4.2 with:
>
> nix-env -i g77-4.2 -K
>
> I am getting this error on different machines (i686 and x86_64):
>
> make[3]: Entering directory `/tmp/nix-28924-0/build/libiberty'
> building stamp-picdir
> if [ x"" != x ] && [ ! -d pic ]; then \
> mkdir pic; \
> else true; fii
> touch stamp-picdirr
> touch: setting times of `stamp-picdir': Function not implemented
> make[3]: *** [stamp-picdir] Error 1
>
> I upgraded gcc to 4.2.4, but the problem remains (patch attached).
> Note the pure gcc build is find, it is the Fortran version which
> fails.
>
> I tried disabling libiberty, but that gives:
>
> make[3]: *** No rule to make target `../libiberty/libiberty.a',
> needed by `full-stamp'. Stop.
>
> Does a gcc guru mind looking into this?
>
> Pj.
>
> _______________________________________________
> nix-dev mailing list
> nix-dev at cs.uu.nl
> https://mail.cs.uu.nl/mailman/listinfo/nix-dev
-------------- next part --------------
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index fb55325..f8e45d7 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -14,4 +14,5 @@ stdenv.mkDerivation {
};
buildInputs = stdenv.lib.optional aclSupport acl;
+ patches = ./setting-time-backward-compatibility.patch;
}
diff --git a/pkgs/tools/misc/coreutils/setting-time-backward-compatibility.patch b/pkgs/tools/misc/coreutils/setting-time-backward-compatibility.patch
new file mode 100644
index 0000000..afeb49c
--- /dev/null
+++ b/pkgs/tools/misc/coreutils/setting-time-backward-compatibility.patch
@@ -0,0 +1,114 @@
+--- coreutils-6.12/lib/utimens.c 2008-05-29 09:21:57.000000000 -0400
++++ lib/utimens.c 2008-06-07 11:36:50.000000000 -0400
+@@ -96,20 +96,42 @@
+ #endif
+
+ /* POSIX 200x added two interfaces to set file timestamps with
+- nanosecond resolution. */
++ nanosecond resolution. We provide a fallback for ENOSYS (for
++ example, compiling against Linux 2.6.25 kernel headers and glibc
++ 2.7, but running on Linux 2.6.18 kernel). */
+ #if HAVE_UTIMENSAT
+ if (fd < 0)
+- return utimensat (AT_FDCWD, file, timespec, 0);
++ {
++ int result = utimensat (AT_FDCWD, file, timespec, 0);
++#ifdef __linux__
++ /* Work around what might be a kernel bug:
++ http://bugzilla.redhat.com/442352
++ http://bugzilla.redhat.com/449910
++ It appears that utimensat can mistakenly return 280 rather
++ than 0 to indicate success.
++ FIXME: remove in 2010 or whenever the offending kernels
++ are no longer in common use. */
++ if (0 < result)
++ result = 0;
++#endif
++
++ if (result == 0 || errno != ENOSYS)
++ return result;
++ }
+ #endif
+ #if HAVE_FUTIMENS
+- return futimens (fd, timespec);
+-#else
++ {
++ int result = futimens (fd, timespec);
++ if (result == 0 || errno != ENOSYS)
++ return result;
++ }
++#endif
+
+ /* The platform lacks an interface to set file timestamps with
+ nanosecond resolution, so do the best we can, discarding any
+ fractional part of the timestamp. */
+ {
+-# if HAVE_FUTIMESAT || HAVE_WORKING_UTIMES
++#if HAVE_FUTIMESAT || HAVE_WORKING_UTIMES
+ struct timeval timeval[2];
+ struct timeval const *t;
+ if (timespec)
+@@ -125,9 +147,9 @@
+
+ if (fd < 0)
+ {
+-# if HAVE_FUTIMESAT
++# if HAVE_FUTIMESAT
+ return futimesat (AT_FDCWD, file, t);
+-# endif
++# endif
+ }
+ else
+ {
+@@ -141,21 +163,21 @@
+ worth optimizing, and who knows what other messed-up systems
+ are out there? So play it safe and fall back on the code
+ below. */
+-# if HAVE_FUTIMESAT
++# if HAVE_FUTIMESAT
+ if (futimesat (fd, NULL, t) == 0)
+ return 0;
+-# elif HAVE_FUTIMES
++# elif HAVE_FUTIMES
+ if (futimes (fd, t) == 0)
+ return 0;
+-# endif
++# endif
+ }
+-# endif /* HAVE_FUTIMESAT || HAVE_WORKING_UTIMES */
++#endif /* HAVE_FUTIMESAT || HAVE_WORKING_UTIMES */
+
+ if (!file)
+ {
+-# if ! (HAVE_FUTIMESAT || (HAVE_WORKING_UTIMES && HAVE_FUTIMES))
++#if ! (HAVE_FUTIMESAT || (HAVE_WORKING_UTIMES && HAVE_FUTIMES))
+ errno = ENOSYS;
+-# endif
++#endif
+
+ /* Prefer EBADF to ENOSYS if both error numbers apply. */
+ if (errno == ENOSYS)
+@@ -170,9 +192,9 @@
+ return -1;
+ }
+
+-# if HAVE_WORKING_UTIMES
++#if HAVE_WORKING_UTIMES
+ return utimes (file, t);
+-# else
++#else
+ {
+ struct utimbuf utimbuf;
+ struct utimbuf const *ut;
+@@ -187,9 +209,8 @@
+
+ return utime (file, ut);
+ }
+-# endif /* !HAVE_WORKING_UTIMES */
++#endif /* !HAVE_WORKING_UTIMES */
+ }
+-#endif /* !HAVE_FUTIMENS */
+ }
+
+ /* Set the access and modification time stamps of FILE to be
+
More information about the nix-dev
mailing list