Skip to content

Commit 84a07e0

Browse files
committed
Fixes to build on linux-arm64
1 parent 31b882f commit 84a07e0

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.bazelrc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ test --test_strategy=standalone
2121
# By default build in C++17 mode using the Homegrown scheduler for parallelism.
2222
# build --repo_env=CC=g++
2323
build --cxxopt=-std=c++17
24-
build --cxxopt=-mcx16 # 16 byte CAS
24+
# Apply -mcx16 only for x86_64
25+
build:x86_64 --cxxopt=-mcx16 # use 16 byte CAS
2526
build --cxxopt=-DHOMEGROWN # use the homegrown scheduler
2627
build --cxxopt=-DLONG # use 8 byte vertex identifiers
2728
build --cxxopt=-DAMORTIZEDPD # use amortized_bytepd encoding scheme for compressed graphs
@@ -75,4 +76,4 @@ build:sage --define use_numa=true
7576

7677
# Disable Bzlmod for every Bazel command
7778
# Turn it on after we migrate to use bzlmod
78-
common --enable_bzlmod=False
79+
common --enable_bzlmod=False

.bazelversion

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6.2.0

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
55

66
git_repository(
77
name = "parcluster",
8-
remote = "git@github.com:ParAlg/InMemoryClusteringAPI.git",
8+
remote = "https://github.com/ParAlg/InMemoryClusteringAPI.git",
99
commit = "ccf763ad6dcf0e36c3b0b212d429ef19c2cbf837",
1010
strip_prefix = "include/",
1111
)

0 commit comments

Comments
 (0)