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

Update to GCC 11 #12868

Merged
merged 5 commits into from
Mar 6, 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 conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies:
- doxygen=1.8.20
- fastavro>=0.22.9
- fsspec>=0.6.0
- gcc_linux-64=9.*
- gcc_linux-64=11.*
- hypothesis
- ipython
- libarrow=10
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/cudf/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
c_compiler_version:
- 9
- 11

cxx_compiler_version:
- 9
- 11

sysroot_version:
- "2.17"
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/cudf_kafka/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
c_compiler_version:
- 9
- 11

cxx_compiler_version:
- 9
- 11

sysroot_version:
- "2.17"
4 changes: 2 additions & 2 deletions conda/recipes/libcudf/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
c_compiler_version:
- 9
- 11

cxx_compiler_version:
- 9
- 11

cuda_compiler:
- nvcc
Expand Down
3 changes: 3 additions & 0 deletions cpp/benchmarks/sort/nested_types_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@

#include <cudf_test/column_wrapper.hpp>

// This error appears in GCC 11.3 and may be a compiler bug or nvbench bug.
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#include <nvbench/nvbench.cuh>
#pragma GCC diagnostic pop

#include <random>

Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ dependencies:
- matrix:
arch: x86_64
packages:
- &gcc_amd64 gcc_linux-64=9.*
- &gcc_amd64 gcc_linux-64=11.*
- &sysroot_amd64 sysroot_linux-64==2.17
- matrix:
arch: aarch64
packages:
- &gcc_aarch64 gcc_linux-aarch64=9.*
- &gcc_aarch64 gcc_linux-aarch64=11.*
- &sysroot_aarch64 sysroot_linux-aarch64==2.17
- output_types: conda
matrices:
Expand Down