Compare commits

...

3 Commits

Author SHA1 Message Date
Cornelius Riemenschneider
813c756786 Move picosha2 to non-angular brackets, the compiler is complaining. 2024-01-08 11:22:54 +01:00
Cornelius Riemenschneider
2c1cbaa1ca Upgrade to bazel 7. 2024-01-08 11:22:54 +01:00
Cornelius Riemenschneider
b0599edb7e Bazel: Bump dependant rules versions.
This doesn't bump rules_python, as there's some incompatible changes in that
which will need further addressing.
2024-01-08 11:21:02 +01:00
6 changed files with 11 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
common --enable_platform_specific_config
common --noenable_bzlmod
build --repo_env=CC=clang --repo_env=CXX=clang++

View File

@@ -1 +1 @@
6.3.1
7.0.0

View File

@@ -7,21 +7,21 @@ def codeql_workspace(repository_name = "codeql"):
maybe(
repo_rule = http_archive,
name = "rules_pkg",
sha256 = "62eeb544ff1ef41d786e329e1536c1d541bb9bcad27ae984d57f18f314018e66",
sha256 = "8f9ee2dc10c1ae514ee599a8b42ed99fa262b757058f65ad3c384289ff70c4b8",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.6.0/rules_pkg-0.6.0.tar.gz",
"https://github.com/bazelbuild/rules_pkg/releases/download/0.6.0/rules_pkg-0.6.0.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.9.1/rules_pkg-0.9.1.tar.gz",
"https://github.com/bazelbuild/rules_pkg/releases/download/0.9.1/rules_pkg-0.9.1.tar.gz",
],
)
maybe(
repo_rule = http_archive,
name = "platforms",
sha256 = "460caee0fa583b908c622913334ec3c1b842572b9c23cf0d3da0c2543a1a157d",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.3/platforms-0.0.3.tar.gz",
"https://github.com/bazelbuild/platforms/releases/download/0.0.3/platforms-0.0.3.tar.gz",
"https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz",
"https://github.com/bazelbuild/platforms/releases/download/0.0.8/platforms-0.0.8.tar.gz",
],
sha256 = "8150406605389ececb6da07cbcb509d5637a3ab9a24bc69b1101531367d89d74",
)
maybe(

View File

@@ -5,7 +5,7 @@
#include <unordered_set>
#include <queue>
#include <picosha2.h>
#include "picosha2.h"
#include <swift/AST/SourceFile.h>
#include <swift/AST/Builtins.h>

View File

@@ -1,7 +1,7 @@
#include "swift/extractor/infra/SwiftMangledName.h"
#include "absl/strings/str_cat.h"
#include <picosha2.h>
#include "picosha2.h"
namespace codeql {

View File

@@ -10,7 +10,7 @@
#include <cassert>
#include <iostream>
#include <picosha2.h>
#include "picosha2.h"
#include "swift/extractor/infra/file/PathHash.h"
#include "swift/extractor/infra/file/Path.h"