diff options
author | Vincent Ambo <tazjin@google.com> | 2019-07-04T10·18+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-07-04T10·18+0100 |
commit | f723b8b878a3c4a4687b9e337a875500bebb39b1 (patch) | |
tree | e85204cf042c355e90cff61c111e7d8cd15df311 /third_party/bazel/rules_haskell/tests/binary-indirect-cbits | |
parent | 2eb1dc26e42ffbdc168f05ef744bd4b4f3e4c36f (diff) |
feat(third_party/bazel): Check in rules_haskell from Tweag r/17
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/binary-indirect-cbits')
4 files changed, 55 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/BUILD.bazel b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/BUILD.bazel new file mode 100644 index 000000000000..6668f230e508 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/BUILD.bazel @@ -0,0 +1,36 @@ +load( + "@io_tweag_rules_haskell//haskell:haskell.bzl", + "haskell_binary", + "haskell_library", +) + +haskell_binary( + name = "binary-indirect-cbits", + srcs = ["Main.hs"], + linkstatic = False, + visibility = ["//visibility:public"], + deps = [ + "//tests/hackage:base", + "//tests/library-with-cbits", + ], +) + +haskell_binary( + name = "binary-indirect-cbits-partially-static", + srcs = ["Main.hs"], + linkstatic = False, + deps = [ + "//tests/hackage:base", + "//tests/library-with-cbits:library-with-cbits-static", + ], +) + +haskell_binary( + name = "binary-indirect-cbits-fully-static", + srcs = ["Main.hs"], + linkstatic = True, + deps = [ + "//tests/hackage:base", + "//tests/library-with-cbits:library-with-cbits-static", + ], +) diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Main.hs b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Main.hs new file mode 100644 index 000000000000..c9d7037e23c2 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Main.hs @@ -0,0 +1,5 @@ +import AddOne + +main :: IO () +main = do + putStrLn $ show $ addOne 2 diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper.hs b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper.hs new file mode 100644 index 000000000000..00b6be28f405 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper.hs @@ -0,0 +1,5 @@ +module Wrapper + ( module AddOne + ) where + +import AddOne diff --git a/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper2.hs b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper2.hs new file mode 100644 index 000000000000..a39233a84271 --- /dev/null +++ b/third_party/bazel/rules_haskell/tests/binary-indirect-cbits/Wrapper2.hs @@ -0,0 +1,9 @@ +module Wrapper2 + ( module AddOne + , addOne2 + ) where + +import AddOne +import qualified Wrapper + +addOne2 = Wrapper.addOne |