Bug#1069765: haskell-termonad: please add support for loong64
wuruilong
wuruilong at loongson.cn
Wed Apr 24 12:49:19 BST 2024
Source: haskell-termonad
Severity: normal
Tags: patch
User: debian-loongarch at lists.debian.org
Usertags: loong64
X-Debbugs-Cc: wuruilong at loongson.cn
Dear Maintainer,
haskell-termonad compiles incorrectly on loongarch, the attached patch has solved the problem, please refer to the patch to modify the code
wuruilong
-- System Information:
Debian Release: trixie/sid
APT prefers unreleased
APT policy: (500, 'unreleased'), (500, 'unstable')
Architecture: loong64 (loongarch64)
Kernel: Linux 5.10.0-60.96.0.126.oe2203.loongarch64 (SMP w/32 CPU threads)
Locale: LANG=C, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: unable to detect
-------------- next part --------------
Description: <short summary of the patch>
TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
.
haskell-termonad (4.5.0.0-1) unstable; urgency=medium
.
[ Ilias Tsitsimpis ]
* Declare compliance with Debian policy 4.6.2
.
[ Clint Adams ]
* New upstream release
Author: Clint Adams <clint at debian.org>
---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2024-04-24
--- haskell-termonad-4.5.0.0.orig/termonad.cabal
+++ haskell-termonad-4.5.0.0/termonad.cabal
@@ -148,7 +148,10 @@ executable termonad
build-depends: base
, termonad
default-language: Haskell2010
- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -threaded -rtsopts
+ else
+ ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
test-suite doctests
type: exitcode-stdio-1.0
@@ -177,7 +180,10 @@ test-suite termonad-test
, tasty-hedgehog
, tasty-hspec
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
default-extensions: DataKinds
, GADTs
, GeneralizedNewtypeDeriving
@@ -207,7 +213,10 @@ executable termonad-readme
, colour
ghc-options: -pgmL markdown-unlit
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
if flag(buildexamples)
buildable: True
@@ -220,7 +229,10 @@ executable termonad-example-colour-exten
, termonad
, colour
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
if flag(buildexamples)
buildable: True
@@ -233,7 +245,10 @@ executable termonad-example-colour-exten
, termonad
, colour
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
if flag(buildexamples)
buildable: True
@@ -246,7 +261,10 @@ executable termonad-example-colour-exten
, termonad
, colour
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
if flag(buildexamples)
buildable: True
@@ -259,7 +277,10 @@ executable termonad-example-colour-exten
, termonad
, colour
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
if flag(buildexamples)
buildable: True
@@ -272,7 +293,10 @@ executable termonad-example-colour-exten
, termonad
, colour
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
if flag(buildexamples)
buildable: True
@@ -285,7 +309,10 @@ executable termonad-example-colour-exten
, termonad
, colour
default-language: Haskell2010
- ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
+ if arch(loongarch64)
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts
+ else
+ ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
if flag(buildexamples)
buildable: True
More information about the Pkg-haskell-maintainers
mailing list