summaryrefslogtreecommitdiff
path: root/rts/include
diff options
context:
space:
mode:
Diffstat (limited to 'rts/include')
-rw-r--r--rts/include/Cmm.h1
-rw-r--r--rts/include/rts/Config.h9
2 files changed, 5 insertions, 5 deletions
diff --git a/rts/include/Cmm.h b/rts/include/Cmm.h
index 55d201d94d..0bdb704035 100644
--- a/rts/include/Cmm.h
+++ b/rts/include/Cmm.h
@@ -354,6 +354,7 @@
Constants.
-------------------------------------------------------------------------- */
+#include "rts/Config.h"
#include "rts/Constants.h"
#include "DerivedConstants.h"
#include "rts/storage/ClosureTypes.h"
diff --git a/rts/include/rts/Config.h b/rts/include/rts/Config.h
index cb1e90a78d..c5f34638e0 100644
--- a/rts/include/rts/Config.h
+++ b/rts/include/rts/Config.h
@@ -26,12 +26,11 @@
#define USING_LIBBFD 1
#endif
-/* DEBUG and PROFILING both imply TRACING */
-#if defined(DEBUG) || defined(PROFILING)
-#if !defined(TRACING)
+/*
+ * We previously only offer the eventlog in a subset of RTS ways; we now
+ * enable it unconditionally to simplify packaging. See #18948.
+ */
#define TRACING
-#endif
-#endif
/* DEBUG implies TICKY_TICKY */
#if defined(DEBUG)