Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump clang to match chromium 121.0.6162.1 #473

Merged
merged 2 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
required: false
type: boolean
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
win-clang-tidy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on:
- '.circleci/**'
- '.cirrus.yml'
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
win-compiler-compatible-2022:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-android-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
android-binary-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
DH_QUIET: 1
jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-freebsd-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
freebsd-binary-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-linux-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
linux-binary-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
mac-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
mingw64-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-openwrt-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
openwrt-binary-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
release:
types: [published]
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
docker_publish:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/releases-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ defaults:
run:
shell: cmd
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
windows-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
required: false
type: boolean
env:
CACHE_EPOCH: 121-1
CACHE_EPOCH: 121-2
GOPROXY: direct
jobs:
sanitizer-linux:
Expand Down
2 changes: 1 addition & 1 deletion CLANG_REVISION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
llvmorg-18-init-12422-g74cdb8e6-1
llvmorg-18-init-12938-geb1d5065-1
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,7 @@ endif()
# C11/C++17 compiler flags setup.
# --------------------------
set(CMAKE_C_STANDARD 99)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

Expand Down Expand Up @@ -2255,6 +2255,7 @@ target_compile_definitions(asio PUBLIC ASIO_NO_EXCEPTIONS)
target_compile_definitions(asio PUBLIC ASIO_NO_TS_EXECUTORS)
target_compile_definitions(asio PUBLIC ASIO_SEPARATE_COMPILATION)
target_compile_definitions(asio PUBLIC ASIO_NO_DEPRECATED)
target_compile_definitions(asio PUBLIC ASIO_DISABLE_CO_AWAIT)
# forward libcxx present
# we control the visiblity
target_compile_definitions(asio PUBLIC ASIO_DISABLE_VISIBILITY)
Expand Down
Loading