about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/cc_haskell_import/BUILD.bazel
blob: c896314500597476489b4fbc88917b7a6ee9a9f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_library",
)

package(default_testonly = 1)

haskell_library(
    name = "hs-lib-a",
    srcs = ["LibA.hs"],
    deps = [
        "//tests/data:ourclibrary",
        "//tests/hackage:base",
    ],
)

haskell_library(
    name = "hs-lib-b",
    srcs = ["LibB.hs"],
    deps = [
        ":hs-lib-a",
        "//tests/hackage:base",
    ],
)

cc_binary(
    name = "cc-bin",
    srcs = [
        "main.c",
    ],
    # TODO support linking with static haskell libraries.
    linkstatic = False,
    tags = ["requires_threaded_rts"],
    visibility = ["//tests:__subpackages__"],
    deps = [
        ":hs-lib-b",
        "@ghc//:threaded-rts",
    ],
)

# We go one step further and use the Haskell library from above
# to build a static .so which is then loaded with a Python script
# and calls the Haskell function constructed from GHC C FFI.

# shared library which python will dlopen
cc_binary(
    name = "hs-lib-b-wrapped.so",
    linkshared = 1,
    linkstatic = 0,
    tags = ["requires_threaded_rts"],
    visibility = ["//tests:__subpackages__"],
    deps = [
        ":hs-lib-b",
        "@ghc//:threaded-rts",
    ],
)

# just dlopens hb-lib-b-wrapped.so and prints it
py_binary(
    name = "python_add_one",
    srcs = ["python_add_one.py"],
    data = [
        ":hs-lib-b-wrapped.so",
    ],
    default_python_version = "PY3",
    srcs_version = "PY3ONLY",
    tags = ["requires_threaded_rts"],
    visibility = ["//tests:__subpackages__"],
    deps = ["@bazel_tools//tools/python/runfiles"],
)