Include config.h before any other header
"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; see705868a8a9
. In this case, GCC would compute a different address for ‘settings.useSubstitutes’ in misc.cc because of the off_t in ‘settings’. Reverts3854fc9b42
. http://hydra.nixos.org/build/3016700
This commit is contained in:
parent
d3004c78d9
commit
295027f533
|
@ -1,10 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <map>
|
||||
|
||||
#include "types.hh"
|
||||
#include "hash.hh"
|
||||
|
||||
#include <map>
|
||||
|
||||
|
||||
namespace nix {
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <string>
|
||||
#include <list>
|
||||
#include <set>
|
||||
|
|
Loading…
Reference in a new issue