Mercurial
view dowa/BUILD @ 33:c0f6c8c7829f
[Seobeo] Linux epoll. Set the client socket to be nonblocking so that it doesn't stop loading when two different threads handle different client calls. I might have problem with socket not being cleaned up properly so need to check that.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 10 Oct 2025 06:59:32 -0700 |
| parents | 947b81010aba |
| children | a30944e5719e |
line wrap: on
line source
load("@rules_cc//cc:cc_library.bzl", "cc_library") load("@rules_cc//cc:cc_test.bzl", "cc_test") cc_library( name = "dowa", srcs = [ "d_string.c", "d_memory.c", ], hdrs = [ "dowa.h", "dowa_internal.h" ], visibility = ["//visibility:public"], ) cc_binary( name = "dowa_test", srcs = ["dowa_test.c"], deps = [":dowa"], args = [], data = glob([ "test_folder/**", ]), copts = ["-fsanitize=address", "-g"], linkopts = ["-fsanitize=address"], )