diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-02-06 21:45:41 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-02-13 03:26:14 -0500 |
commit | 191dfd2d88f6d2fd7a879f14da26fe88e616c8ea (patch) | |
tree | 6c3996135341d7e74d43788a20fe865003d4e480 /rts/rts.cabal.in | |
parent | afdfaff0fd4ed8162997fe904924d2ce528be285 (diff) | |
download | haskell-191dfd2d88f6d2fd7a879f14da26fe88e616c8ea.tar.gz |
rts/adjustor: Split Windows path out of NativeAmd64
Diffstat (limited to 'rts/rts.cabal.in')
-rw-r--r-- | rts/rts.cabal.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rts/rts.cabal.in b/rts/rts.cabal.in index e2abeb5df1..0c40c2f6bb 100644 --- a/rts/rts.cabal.in +++ b/rts/rts.cabal.in @@ -455,7 +455,10 @@ library asm-sources: AdjustorAsm.S c-sources: adjustor/Nativei386.c if arch(x86_64) - c-sources: adjustor/NativeAmd64.c + if opsys(mingw32) + c-sources: adjustor/NativeAmd64Mingw.c + else + c-sources: adjustor/NativeAmd64.c if arch(ppc) || arch(ppc64) asm-sources: AdjustorAsm.S c-sources: adjustor/NativePowerPC.c |