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/examples/rts | |
parent | 2eb1dc26e42ffbdc168f05ef744bd4b4f3e4c36f (diff) |
feat(third_party/bazel): Check in rules_haskell from Tweag r/17
Diffstat (limited to 'third_party/bazel/rules_haskell/examples/rts')
-rw-r--r-- | third_party/bazel/rules_haskell/examples/rts/BUILD.bazel | 29 | ||||
-rw-r--r-- | third_party/bazel/rules_haskell/examples/rts/One.hs | 6 | ||||
-rw-r--r-- | third_party/bazel/rules_haskell/examples/rts/main.c | 11 |
3 files changed, 46 insertions, 0 deletions
diff --git a/third_party/bazel/rules_haskell/examples/rts/BUILD.bazel b/third_party/bazel/rules_haskell/examples/rts/BUILD.bazel new file mode 100644 index 000000000000..1bbf94b1c0a9 --- /dev/null +++ b/third_party/bazel/rules_haskell/examples/rts/BUILD.bazel @@ -0,0 +1,29 @@ +load( + "@io_tweag_rules_haskell//haskell:haskell.bzl", + "cc_haskell_import", + "haskell_library", + "haskell_toolchain_library", +) + +haskell_toolchain_library(name = "base") + +haskell_library( + name = "add-one-hs", + srcs = ["One.hs"], + deps = [":base"], +) + +cc_haskell_import( + name = "add-one-so", + dep = ":add-one-hs", +) + +cc_test( + name = "add-one", + srcs = [ + "main.c", + ":add-one-so", + ], + visibility = ["//visibility:public"], + deps = ["@ghc//:threaded-rts"], +) diff --git a/third_party/bazel/rules_haskell/examples/rts/One.hs b/third_party/bazel/rules_haskell/examples/rts/One.hs new file mode 100644 index 000000000000..bc24fb7cb274 --- /dev/null +++ b/third_party/bazel/rules_haskell/examples/rts/One.hs @@ -0,0 +1,6 @@ +module One () where + +add_one_hs :: Int -> Int +add_one_hs x = x + 1 + +foreign export ccall add_one_hs :: Int -> Int diff --git a/third_party/bazel/rules_haskell/examples/rts/main.c b/third_party/bazel/rules_haskell/examples/rts/main.c new file mode 100644 index 000000000000..28624227d8c0 --- /dev/null +++ b/third_party/bazel/rules_haskell/examples/rts/main.c @@ -0,0 +1,11 @@ +#include <stdio.h> +#include "HsFFI.h" + +extern HsInt add_one_hs(HsInt a0); + +int main(int argc, char *argv[]) { + hs_init(&argc, &argv); + printf("Adding one to 5 through Haskell is %ld\n", add_one_hs(5)); + hs_exit(); + return 0; +} |