Skip to content

Commit e76f525

Browse files
authored
fix: Workaround #4043 (#4044)
Signed-off-by: Julien Jerphanion <[email protected]>
1 parent 9967813 commit e76f525

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

dev/environment-dev.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ channels:
22
- conda-forge
33
dependencies:
44
# libmamba build dependencies
5-
- cxx-compiler
5+
# Workaround `mamba-org/mamba#4043`
6+
# TODO: Understand the linkage issue with GCC 14
7+
- sel(linux): cxx-compiler <1.11 # GCC 13
8+
- sel(linux): sysroot_linux-64==2.17
9+
- sel(osx): cxx-compiler
10+
- sel(win): cxx-compiler
611
- cmake >=3.16
712
- pkg-config # Used by some CMake dependencies
813
- ninja

dev/environment-micromamba-static.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ channels:
33
dependencies:
44
- python >=3.12
55
# libmamba build dependencies
6-
- cxx-compiler
6+
# Workaround `mamba-org/mamba#4043`
7+
# TODO: Understand the linkage issue with GCC 14
8+
- sel(linux): cxx-compiler <1.11 # GCC 13
9+
- sel(linux): sysroot_linux-64==2.17
10+
- sel(osx): cxx-compiler
11+
- sel(win): cxx-compiler
712
- cmake >=3.16
813
- pkg-config # Used by some CMake dependencies
914
- ninja

0 commit comments

Comments
 (0)