Skip to content

Commit 7e6b41d

Browse files
committed
use cc_shared_library for hs_lib_repl_test
1 parent 62bdb62 commit 7e6b41d

File tree

1 file changed

+8
-1
lines changed
  • rules_haskell_tests/tests/repl-targets/hs_lib_repl_test

1 file changed

+8
-1
lines changed

rules_haskell_tests/tests/repl-targets/hs_lib_repl_test/BUILD.bazel

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ cc_library(
4242
visibility = ["//visibility:public"],
4343
)
4444

45+
cc_shared_library(
46+
name = "ourclibrary_shared",
47+
deps = [
48+
":ourclibrary",
49+
],
50+
)
51+
4552
config_setting(
4653
name = "nix",
4754
constraint_values = [
@@ -72,7 +79,7 @@ haskell_library(
7279
deps = [
7380
":array",
7481
":base",
75-
":ourclibrary",
82+
":ourclibrary_shared",
7683
":zlib",
7784
],
7885
)

0 commit comments

Comments
 (0)