[commit: dph] master: Add reverse example to .cabal file (983ea1a)
Ben Lippmeier
benl at ouroborus.net
Wed Apr 20 04:03:51 CEST 2011
Repository : ssh://darcs.haskell.org//srv/darcs/packages/dph
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/983ea1abd25a34d5139b8ffab3fbdd131ae93b29
>---------------------------------------------------------------
commit 983ea1abd25a34d5139b8ffab3fbdd131ae93b29
Author: Ben Lippmeier <benl at ouroborus.net>
Date: Thu Apr 14 15:43:15 2011 +1000
Add reverse example to .cabal file
>---------------------------------------------------------------
dph-examples/dph-examples.cabal | 15 +++++++++++++++
dph-examples/dph-examples.template | 15 +++++++++++++++
2 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/dph-examples/dph-examples.cabal b/dph-examples/dph-examples.cabal
index 4339588..e43d739 100644
--- a/dph-examples/dph-examples.cabal
+++ b/dph-examples/dph-examples.cabal
@@ -80,6 +80,21 @@ Executable dph-evens-seq
-- ghc-options: -dcore-lint -rtsopts -threaded -fllvm -Odph -fdph-seq -fcpr-off -fsimplifier-phases=4 -fstrictness-before=3
+-- Reverse --------------------------------------------------------------------
+Executable dph-reverse
+ Build-depends: base == 4.*, vector == 0.7.*, dph-base == 0.5.*, dph-prim-par == 0.5.*, dph-par == 0.5.*, random == 1.0.*, old-time == 1.0.*
+ Main-is: Main.hs
+ hs-source-dirs: imaginary/Reverse/dph lib
+ ghc-options: -dcore-lint -rtsopts -threaded -fllvm -Odph -fdph-par -fcpr-off -fsimplifier-phases=4 -fstrictness-before=3
+
+
+Executable dph-reverse-seq
+ Build-depends: base == 4.*, vector == 0.7.*, dph-base == 0.5.*, dph-prim-seq == 0.5.*, dph-seq == 0.5.*, random == 1.0.*, old-time == 1.0.*
+ Main-is: Main.hs
+ hs-source-dirs: imaginary/Reverse/dph lib
+ ghc-options: -dcore-lint -rtsopts -threaded -fllvm -Odph -fdph-seq -fcpr-off -fsimplifier-phases=4 -fstrictness-before=3
+
+
-- Words ---------------------------------------------------------------------
Executable dph-words
Build-depends: base == 4.*, vector == 0.7.*, dph-base == 0.5.*, dph-prim-par == 0.5.*, dph-par == 0.5.*, random == 1.0.*, old-time == 1.0.*
diff --git a/dph-examples/dph-examples.template b/dph-examples/dph-examples.template
index f7d27b5..ddc9d26 100644
--- a/dph-examples/dph-examples.template
+++ b/dph-examples/dph-examples.template
@@ -78,6 +78,21 @@ Executable dph-evens-seq
-- ghc-options: DPH_OPTIONS_SEQ
+-- Reverse --------------------------------------------------------------------
+Executable dph-reverse
+ Build-depends: DPH_DEPENDS_PAR
+ Main-is: Main.hs
+ hs-source-dirs: imaginary/Reverse/dph lib
+ ghc-options: DPH_OPTIONS_PAR
+
+
+Executable dph-reverse-seq
+ Build-depends: DPH_DEPENDS_SEQ
+ Main-is: Main.hs
+ hs-source-dirs: imaginary/Reverse/dph lib
+ ghc-options: DPH_OPTIONS_SEQ
+
+
-- Words ---------------------------------------------------------------------
Executable dph-words
Build-depends: DPH_DEPENDS_PAR
More information about the Cvs-libraries
mailing list