From 295027f533bb5a754bfc62f934c88b43e9c100a6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 11 Sep 2012 14:45:42 -0400 Subject: [PATCH] Include config.h before any other header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "config.h" must be included first, because otherwise the compiler might not see the right value of _FILE_OFFSET_BITS. We've had this before; see 705868a8a96a10f70e629433cfffc2d5cd2703eb. In this case, GCC would compute a different address for ‘settings.useSubstitutes’ in misc.cc because of the off_t in ‘settings’. Reverts 3854fc9b42d16b810f62b64194b699033b03aaf1. http://hydra.nixos.org/build/3016700 --- src/libstore/derivations.hh | 4 ++-- src/libutil/types.hh | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libstore/derivations.hh b/src/libstore/derivations.hh index 8f22b4afa6..a5ffc22520 100644 --- a/src/libstore/derivations.hh +++ b/src/libstore/derivations.hh @@ -1,10 +1,10 @@ #pragma once -#include - #include "types.hh" #include "hash.hh" +#include + namespace nix { diff --git a/src/libutil/types.hh b/src/libutil/types.hh index 165a46fa28..a2ab1cc0ee 100644 --- a/src/libutil/types.hh +++ b/src/libutil/types.hh @@ -1,5 +1,7 @@ #pragma once +#include "config.h" + #include #include #include