Skip to content

Commit eebc516

Browse files
committed
chore: Disable the OpenMP cracker in bazel for now.
I broke it. I'll re-enable it if/when I fix omp support in the bazel build.
1 parent faf39ef commit eebc516

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

.cirrus.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ bazel-release_task:
1212
--build_tag_filters=-haskell
1313
--test_tag_filters=-haskell
1414
--remote_download_minimal
15-
--config=release
1615
--
1716
//c-toxcore/...
1817
-//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus?
@@ -30,7 +29,6 @@ bazel-debug_task:
3029
--build_tag_filters=-haskell
3130
--test_tag_filters=-haskell
3231
--remote_download_minimal
33-
--config=debug
3432
--
3533
//c-toxcore/...
3634
-//c-toxcore/auto_tests:tcp_relay_test # TODO(robinlinden): Why does this pass locally but not in Cirrus?
@@ -47,6 +45,5 @@ cimple_task:
4745
--remote_http_cache=http://$CIRRUS_HTTP_CACHE_HOST
4846
--build_tag_filters=haskell
4947
--test_tag_filters=haskell
50-
--config=release
5148
--
5249
//c-toxcore/...

other/fun/BUILD.bazel

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
load("@rules_cc//cc:defs.bzl", "cc_binary")
22

3-
cc_binary(
4-
name = "cracker",
5-
srcs = ["cracker.c"],
6-
copts = ["-fopenmp"],
7-
linkopts = ["-fopenmp"],
8-
deps = [
9-
"//c-toxcore/toxcore:ccompat",
10-
"@libsodium",
11-
],
12-
)
3+
#cc_binary(
4+
# name = "cracker",
5+
# srcs = ["cracker.c"],
6+
# copts = ["-fopenmp"],
7+
# linkopts = ["-fopenmp"],
8+
# deps = [
9+
# "//c-toxcore/toxcore:ccompat",
10+
# "@libsodium",
11+
# ],
12+
#)
1313

1414
cc_binary(
1515
name = "cracker_simple",

0 commit comments

Comments
 (0)