diff options
author | Karel Gardas <karel.gardas@centrum.cz> | 2020-10-01 20:02:14 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-10-03 19:33:06 -0400 |
commit | 70dc2f09a33a4c3f485d8b63e92a21955643a0b7 (patch) | |
tree | c36b340b213789fa027e304c6a2c2bef26fd0d69 /rts/rts.cabal.in | |
parent | b0ccba66c4d7c16eba7e2fdc1857fc0f63cd33f9 (diff) | |
download | haskell-70dc2f09a33a4c3f485d8b63e92a21955643a0b7.tar.gz |
fix rts.cabal to use real arch names and not aliasses (fixes #18654)
Diffstat (limited to 'rts/rts.cabal.in')
-rw-r--r-- | rts/rts.cabal.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/rts.cabal.in b/rts/rts.cabal.in index 89d160c9eb..9860951226 100644 --- a/rts/rts.cabal.in +++ b/rts/rts.cabal.in @@ -401,9 +401,9 @@ library -- AutoApply is generated AutoApply.cmm - if arch(i386) || arch(powerpc) || arch(powerpc64) + if arch(i386) || arch(ppc) || arch(ppc64) asm-sources: AdjustorAsm.S - if arch(powerpc) || arch(powerpc64) || arch(powerpc64le) || arch(s390x) + if arch(ppc) || arch(ppc64) || arch(s390x) asm-sources: StgCRunAsm.S c-sources: Adjustor.c |