Skip to content

Use GCC 14 in conda builds. #19192

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

Draft
wants to merge 2 commits into
base: branch-25.08
Choose a base branch
from
Draft
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-128_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies:
- fastavro>=0.22.9
- flatbuffers==24.3.25
- fsspec>=0.6.0
- gcc_linux-aarch64=13.*
- gcc_linux-aarch64=14.*
- hypothesis>=6.131.7
- identify>=2.5.20
- include-what-you-use==0.24.0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/all_cuda-128_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies:
- fastavro>=0.22.9
- flatbuffers==24.3.25
- fsspec>=0.6.0
- gcc_linux-64=13.*
- gcc_linux-64=14.*
- hypothesis>=6.131.7
- identify>=2.5.20
- include-what-you-use==0.24.0
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:
- 13
- 14

cxx_compiler_version:
- 13
- 14

c_stdlib:
- sysroot
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:
- 13
- 14

cxx_compiler_version:
- 13
- 14

c_stdlib:
- sysroot
Expand Down
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:
- 13
- 14

cxx_compiler_version:
- 13
- 14

cuda_compiler:
- cuda-nvcc
Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/pylibcudf/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
c_compiler_version:
- 13
- 14

cxx_compiler_version:
- 13
- 14

c_stdlib:
- sysroot
Expand Down
3 changes: 3 additions & 0 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ set(CUDF_CUDA_FLAGS "")
set(CUDF_CXX_DEFINITIONS "")
set(CUDF_CUDA_DEFINITIONS "")

# For now, disable CMake's automatic module scanning for C++ files.
set(CMAKE_CXX_SCAN_FOR_MODULES OFF)

# Set logging level
set(LIBCUDF_LOGGING_LEVEL
"INFO"
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -425,13 +425,13 @@ dependencies:
arch: x86_64
cuda: "12.*"
packages:
- gcc_linux-64=13.*
- gcc_linux-64=14.*
- sysroot_linux-64==2.28
- matrix:
arch: aarch64
cuda: "12.*"
packages:
- gcc_linux-aarch64=13.*
- gcc_linux-aarch64=14.*
- sysroot_linux-aarch64==2.28
- output_types: conda
matrices:
Expand Down
Loading