Skip to content

Commit

Permalink
List supported commands in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hchataing committed Dec 22, 2023
1 parent 00768c2 commit 4b0fd47
Show file tree
Hide file tree
Showing 5 changed files with 320 additions and 13 deletions.
10 changes: 7 additions & 3 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ cc_library(
"-I.",
"-fmacro-prefix-map=external/rootcanal/=",
],
linkopts = [
"-lcrypto",
],
defines = [
"NDEBUG",
],
Expand All @@ -223,14 +226,16 @@ cc_library(
":rootcanal_rs",
"//packets:generated",
"@fmtlib",
"@boringssl//:crypto",
"@pdl//:packet_runtime",
],
)

cc_binary(
name = "librootcanal_ffi.so",
linkopts = ["-shared"],
linkopts = [
"-shared",
"-lcrypto",
],
srcs = [
"include/crypto/crypto.h",
"include/hci/address.h",
Expand Down Expand Up @@ -286,7 +291,6 @@ cc_binary(
":rootcanal_rs",
"//packets:generated",
"@fmtlib",
"@boringssl//:crypto",
"@pdl//:packet_runtime",
],
)
Expand Down
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 4b0fd47

Please sign in to comment.