Skip to content

Commit

Permalink
wip: use cc_shared_library for hs_lib_repl_test
Browse files Browse the repository at this point in the history
  • Loading branch information
malt3 committed Aug 28, 2024
1 parent 5577ff0 commit 5288828
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ cc_library(
visibility = ["//visibility:public"],
)

cc_shared_library(
name = "ourclibrary_shared",
deps = [
":ourclibrary",
],
)

config_setting(
name = "nix",
constraint_values = [
Expand Down Expand Up @@ -72,7 +79,7 @@ haskell_library(
deps = [
":array",
":base",
":ourclibrary",
":ourclibrary_shared",
":zlib",
],
)

0 comments on commit 5288828

Please sign in to comment.