Skip to content

Commit

Permalink
fix: dylib runtime diff
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Oct 14, 2024
1 parent af31993 commit 8226edb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,21 @@ cc_binary(
srcs = [
"system_impls.cc",
":ecsact_cc_system_impl_srcs",
# NOTE: added because @ecsact_runtime//dylib:dynamic stopped working
"@ecsact_runtime//dylib:dylib.cc",
],
defines = [
# NOTE: added because @ecsact_runtime//dylib:dynamic stopped working
"ECSACT_DYNAMIC_API_LOAD_AT_RUNTIME",
],
linkshared = True,
deps = [
":ecsact_cc",
"@ecsact_runtime//dylib:dynamic",

# NOTE: this stopped working so we added @ecsact_runtime//dylib:dylib.cc
# "@ecsact_runtime//dylib:dynamic",
"@ecsact_runtime//:dylib",
"@ecsact_runtime//dylib:util",
],
)

Expand Down

0 comments on commit 8226edb

Please # to comment.