mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
6a895be0c7
It doesn't work, because esp32 has too little RAM (320KB). DHT is a 240KB struct, so even just allocating that immediately fails. We'll need to think carefully about trimming that if we ever want this to work on embedded devices.
16 lines
296 B
Python
16 lines
296 B
Python
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
|
|
cc_binary(
|
|
name = "host_main",
|
|
testonly = 1,
|
|
srcs = [
|
|
"host_main.cc",
|
|
"main/tox_main.cc",
|
|
"main/tox_main.h",
|
|
],
|
|
deps = [
|
|
"//c-toxcore/toxcore:tox",
|
|
"//c-toxcore/toxcore:tox_events",
|
|
],
|
|
)
|