-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.toml
More file actions
55 lines (46 loc) · 1.14 KB
/
pixi.toml
File metadata and controls
55 lines (46 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
name = "kilted-libpython-bug"
authors = ["Erik Holum <eholum@gmail.com>"]
channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64"]
version = "0.1.0"
[tasks.check]
cmd = """
bash -c '
LIB=${CONDA_PREFIX}/lib/libunique_identifier_msgs__rosidl_generator_py.so
echo "=== file ===" && file $LIB
echo "=== NEEDED ===" && readelf -d $LIB | grep NEEDED || echo "(none)"
'
"""
[tasks.crash]
cmd = """
bash -c '
gcc -o test src/main.cpp -ldl \
-L${CONDA_PREFIX}/lib \
-Wl,-rpath,${CONDA_PREFIX}/lib \
&& ./test
'
"""
[tasks.crash-fix]
cmd = """
bash -c '
gcc -o test src/main.cpp -ldl \
-L${CONDA_PREFIX}/lib \
-Wl,--no-as-needed -lpython3.12 \
-Wl,-rpath,${CONDA_PREFIX}/lib \
&& ./test
'
"""
[activation.env]
LD_LIBRARY_PATH = "${CONDA_PREFIX}/lib"
[feature.kilted]
channels = ["https://prefix.dev/robostack-kilted"]
[feature.kilted.dependencies]
ros-kilted-unique-identifier-msgs = "*"
[feature.jazzy]
channels = ["https://prefix.dev/robostack-jazzy"]
[feature.jazzy.dependencies]
ros-jazzy-unique-identifier-msgs = "*"
[environments]
kilted = { features = ["kilted"] }
jazzy = { features = ["jazzy"] }