diff options
Diffstat (limited to 'rts')
-rw-r--r-- | rts/Libdw.c | 2 | ||||
-rw-r--r-- | rts/Libdw.h | 2 | ||||
-rw-r--r-- | rts/LibdwPool.c | 2 | ||||
-rw-r--r-- | rts/LibdwPool.h | 2 | ||||
-rw-r--r-- | rts/ghc.mk | 8 | ||||
-rw-r--r-- | rts/package.conf.in | 2 | ||||
-rw-r--r-- | rts/posix/Signals.c | 2 |
7 files changed, 6 insertions, 14 deletions
diff --git a/rts/Libdw.c b/rts/Libdw.c index e7968407a6..a16ea59fb5 100644 --- a/rts/Libdw.c +++ b/rts/Libdw.c @@ -10,7 +10,7 @@ #include "RtsUtils.h" #include "Libdw.h" -#ifdef USE_LIBDW +#if USE_LIBDW #include <elfutils/libdwfl.h> #include <dwarf.h> diff --git a/rts/Libdw.h b/rts/Libdw.h index e5fa054155..bb3e71b78f 100644 --- a/rts/Libdw.h +++ b/rts/Libdw.h @@ -16,7 +16,7 @@ #include "BeginPrivate.h" -#ifdef USE_LIBDW +#if USE_LIBDW /* Begin a libdw session. A session is tied to a particular capability */ LibdwSession *libdwInit(void); diff --git a/rts/LibdwPool.c b/rts/LibdwPool.c index 2363212eaa..8d065c342d 100644 --- a/rts/LibdwPool.c +++ b/rts/LibdwPool.c @@ -10,7 +10,7 @@ #include "RtsUtils.h" #include "LibdwPool.h" -#ifdef USE_LIBDW +#if USE_LIBDW #include <unistd.h> diff --git a/rts/LibdwPool.h b/rts/LibdwPool.h index a6b670e6f1..3c4216d09b 100644 --- a/rts/LibdwPool.h +++ b/rts/LibdwPool.h @@ -14,7 +14,7 @@ #include "Rts.h" #include "Libdw.h" -#ifdef USE_LIBDW +#if USE_LIBDW /* Initialize the pool */ void libdwPoolInit(void); diff --git a/rts/ghc.mk b/rts/ghc.mk index 6fdc2cc213..49eaab5be3 100644 --- a/rts/ghc.mk +++ b/rts/ghc.mk @@ -480,14 +480,6 @@ rts_PACKAGE_CPP_OPTS += '-DFFI_LIB="C$(LIBFFI_NAME)"' endif -#----------------------------------------------------------------------------- -# Add support for reading DWARF debugging information, if available - -ifeq "$(GhcRtsWithLibdw)" "YES" -rts_CC_OPTS += -DUSE_LIBDW -rts_PACKAGE_CPP_OPTS += -DUSE_LIBDW -endif - # ----------------------------------------------------------------------------- # dependencies diff --git a/rts/package.conf.in b/rts/package.conf.in index 5c6d240fc2..b52a8672d5 100644 --- a/rts/package.conf.in +++ b/rts/package.conf.in @@ -61,7 +61,7 @@ unresolved symbols. */ ,"mingwex" # endif #endif -#ifdef USE_LIBDW +#if USE_LIBDW , "elf" , "dw" /* for backtraces */ #endif diff --git a/rts/posix/Signals.c b/rts/posix/Signals.c index 496ec7b2df..d73143bd31 100644 --- a/rts/posix/Signals.c +++ b/rts/posix/Signals.c @@ -536,7 +536,7 @@ shutdown_handler(int sig STG_UNUSED) static void backtrace_handler(int sig STG_UNUSED) { -#ifdef USE_LIBDW +#if USE_LIBDW LibdwSession *session = libdwInit(); Backtrace *bt = libdwGetBacktrace(session); libdwPrintBacktrace(session, stderr, bt); |