Skip to content

Commit

Permalink
Don't depend on unbounded-delays for riscv64
Browse files Browse the repository at this point in the history
64-bit RISC-V should fall into the same case in
#344 and should be added
here. Tested locally.
  • Loading branch information
felixonmars authored and Bodigrim committed Nov 2, 2024
1 parent 39b563a commit 5a790ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tasty.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ library
ansi-terminal >= 0.9 && < 1.2

-- No reason to depend on unbounded-delays on 64-bit architecture
if(!arch(x86_64) && !arch(aarch64) && !arch(ppc64) && !arch(s390x))
if(!arch(x86_64) && !arch(aarch64) && !arch(ppc64) && !arch(s390x) && !arch(riscv64))
build-depends:
unbounded-delays >= 0.1 && < 0.2

Expand Down

0 comments on commit 5a790ee

Please sign in to comment.