1 /* -----------------------------------------------------------------------------
2 * $Id: Derived.h,v 1.2 2001/08/04 06:09:24 ken Exp $
4 * (c) The GHC Team, 1998-2001
6 * Configuration information derived from config.h.
8 * NOTE: assumes #include "config.h"
10 * NB: THIS FILE IS INCLUDED IN NON-C CODE AND DATA! #defines only please.
11 * ---------------------------------------------------------------------------*/
17 * SUPPORT_LONG_LONGS controls whether we need to support long longs on a
18 * particular platform. On 64-bit platforms, we don't need to support
19 * long longs since regular machine words will do just fine.
21 #if HAVE_LONG_LONG && SIZEOF_VOID_P < 8
22 #define SUPPORT_LONG_LONGS 1
26 * Whether the runtime system will use libbfd for debugging purposes.
28 #if defined(DEBUG) && defined(HAVE_BFD_H) && !defined(_WIN32) && !defined(PAR) && !defined(GRAN)
29 #define USING_LIBBFD 1
32 #endif /* DERIVED_H */