Skip to content

Commit

Permalink
Update version of nth used.
Browse files Browse the repository at this point in the history
  • Loading branch information
asoffer committed Aug 11, 2024
1 parent 2c7cbb6 commit 4aebef8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
bazel_dep(name = "abseil-cpp", repo_name = "com_google_absl", version = "20230125.1")
bazel_dep(name = "bazel_skylib", repo_name = "bazel_skylib", version = "1.4.2")
bazel_dep(name = "nth-cc", repo_name = "nth_cc", version = "20240221.00")
bazel_dep(name = "nth-cc", repo_name = "nth_cc", version = "20240602.00")
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ but is not required to, use in their instruction set.

## Building from Source

Jasmin is a collection of C++20 libraries, and relies heavily on Bazel for
building and testing. You will need a C++20-compliant compiler and a relatively
Jasmin is a collection of C++23 libraries, and relies heavily on Bazel for
building and testing. You will need a C++23-compliant compiler and a relatively
recent copy of [Bazel](https://bazel.build/). Specifically,

* Bazel version 5.4.0 or greater
Expand Down
2 changes: 2 additions & 0 deletions bazel/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ cc_toolchain_config(
"-Wextra",
"-Wpedantic",
"-Wuninitialized",
"-Wno-c++2b-extensions",
"-Wno-gcc-compat",
"-Wno-sign-compare",
]
Expand Down Expand Up @@ -62,6 +63,7 @@ cc_toolchain_config(
"-Wextra",
"-Wpedantic",
"-Wuninitialized",
"-Wno-c++2b-extensions",
"-Wno-gcc-compat",
"-Wno-sign-compare",
]
Expand Down

0 comments on commit 4aebef8

Please sign in to comment.