Skip to content

Commit

Permalink
bump commits
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed Apr 24, 2024
1 parent 2b9e3da commit 40fdfbf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions deps/ReactantExtra/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ cc_toolchain_config(
builtin_sysroot = "/opt/x86_64-linux-musl/bin/../x86_64-linux-musl/sys-root",
compile_flags = [
],
compiler = "gcc",
compiler = "clang",
coverage_compile_flags = ["--coverage"],
coverage_link_flags = ["--coverage"],
cpu = "k8",
Expand All @@ -51,8 +51,9 @@ cc_toolchain_config(
dbg_compile_flags = ["-g"],
host_system_name = "linux",
link_flags = [
#"-fuse-ld=lld",
"-fuse-ld=lld",
#"--ld-path=/opt/x86_64-linux-musl/bin/ld.lld",
"--ld-path=/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-ld.lld",
],
link_libs = [
"-lstdc++",
Expand All @@ -71,9 +72,12 @@ cc_toolchain_config(
target_libc = "",
target_system_name = "x86_64-unknown-linux-gnu",
tool_paths = {
"gcc": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-gcc",
"cpp": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-g++",
"ld": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-ld",
#"gcc": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-gcc",
#"cpp": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-g++",
#"ld": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-ld",
"gcc": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-clang",
"cpp": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-clang++",
"ld": "/opt/bin/x86_64-linux-musl-cxx11/x86_64-linux-musl-ld.lld",
#"gcc": "/opt/x86_64-linux-musl/bin/clang",
#"ld": "/opt/x86_64-linux-musl/bin/ld.lld",
#"cpp": "/opt/x86_64-linux-musl/bin/clang++",
Expand Down
4 changes: 2 additions & 2 deletions deps/ReactantExtra/WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

NSYNC_COMMIT = "323d8d9e9289a4016d975dd658e606fb2576a1ff"
NSYNC_COMMIT = "600c6501514032fd4c36b78a147c881ab466bd15"
NSYNC_SHA256 = ""
http_archive(
name = "nsync",
Expand All @@ -9,7 +9,7 @@ http_archive(
urls = ["https://github.com/wsmoses/nsync/archive/{commit}.tar.gz".format(commit = NSYNC_COMMIT)],
)

ENZYMEXLA_COMMIT = "dd83c7487360b4a7a1f621c16d3b389ca572f1ae"
ENZYMEXLA_COMMIT = "7c72f45ecac0e15a8c053e0d1ec5291b42718323"
ENZYMEXLA_SHA256 = ""

http_archive(
Expand Down

0 comments on commit 40fdfbf

Please sign in to comment.