Skip to content

Commit

Permalink
Support more compilers in cabal file
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewthad committed Jul 14, 2020
1 parent 98f6e50 commit b792ac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions primitive-unaligned.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ library
, base >=4.12.0.0 && <5
, primitive >=0.6.4 && <0.8
hs-source-dirs: src
if arch(x86_64) || arch(aarch64) || arch(ppc64)
if arch(aarch64) || arch(alpha) || arch(ia64) || arch(powerpc64) || arch(powerpc64le) || arch(riscv64) || arch(s390x) || arch(sparc64) || arch(x86_64) || arch(mips64el)
hs-source-dirs: src-64
if arch(i386) || arch(arm)
if arch(arm) || arch(hppa) || arch(hppa1_1) || arch(i386) || arch(m68k) || arch(mips) || arch(mipseb) || arch(mipsel) || arch(nios2) || arch(powerpc) || arch(riscv32) || arch(rs6000) || arch(s390) || arch(sh4) || arch(sparc) || arch(vax)
hs-source-dirs: src-32
ghc-options: -Wall -O2
default-language: Haskell2010
Expand Down

0 comments on commit b792ac3

Please sign in to comment.