summaryrefslogtreecommitdiff
path: root/rts/win32/veh_excn.c
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2017-12-05 07:49:24 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2017-12-05 07:50:25 +0000
commit30d6373e6715a05c02775b336e832341a6fc0524 (patch)
tree29a31a521dc575bcba99773e9110232a8c7fbae1 /rts/win32/veh_excn.c
parentd6fccfb2ba087abfdd4a68b13165e1312f9af022 (diff)
downloadhaskell-30d6373e6715a05c02775b336e832341a6fc0524.tar.gz
rts: fix filename case for mingw32 target
The failure is visible when we build a cross-compiler from linux to mingw32 as: ``` $ ./configure --host=x86_64-pc-linux-gnu \ --target=x86_64-w64-mingw32 $ make rts/linker/PEi386.c:159:10: error: fatal error: Psapi.h: No such file or directory #include <Psapi.h> ^~~~~~~~~ | 159 | #include <Psapi.h> | ^ ``` The problem here is case-sensitive linux filesystem. On windows it does not matter what case is used for includes and libraries. mingw32 provides all libraries and headers lowercase. This change fixes case for <dbghelp.h>, <psapi.h>, -ldbghelp, -lpsapi. Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> Reviewers: bgamari, erikd, simonmar Reviewed By: bgamari Subscribers: rwbarton, thomie, carter Differential Revision: https://phabricator.haskell.org/D4247
Diffstat (limited to 'rts/win32/veh_excn.c')
-rw-r--r--rts/win32/veh_excn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/win32/veh_excn.c b/rts/win32/veh_excn.c
index fd50562448..4b7d29a1a1 100644
--- a/rts/win32/veh_excn.c
+++ b/rts/win32/veh_excn.c
@@ -20,7 +20,7 @@
#include <stdio.h>
#include <excpt.h>
#include <inttypes.h>
-#include <Dbghelp.h>
+#include <dbghelp.h>
/////////////////////////////////
// Exception / signal handlers.