forked from lfortran/lfortran
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixi.toml
109 lines (98 loc) · 2.88 KB
/
pixi.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[project]
name = "lfortran"
version = "0.42.0"
description = "Modern interactive LLVM-based Fortran compiler"
authors = ["LFortran Maintainers <[email protected]>"]
channels = ["conda-forge"]
platforms = ["osx-arm64", "win-64", "linux-64"]
# feature.default.tasks
[tasks]
start = "src/bin/lfortran"
clean = "git clean -dfx -e '.pixi'"
[feature.test.tasks]
ctest = "cmake --build . --parallel --target test"
tests = "./run_tests.py"
integration_tests = "cd integration_tests && ./run_tests.py -j16"
[feature.llvm10.host-dependencies]
llvmdev = "10.0.1"
[feature.llvm11.host-dependencies]
llvmdev = "11.1.0"
[feature.llvm12.host-dependencies]
llvmdev = "12.0.1"
[feature.llvm13.host-dependencies]
llvmdev = "13.0.1"
[feature.llvm14.host-dependencies]
llvmdev = "14.0.6"
[feature.llvm15.host-dependencies]
llvmdev = "15.0.7"
[feature.llvm16.host-dependencies]
llvmdev = "16.0.6"
[feature.llvm17.host-dependencies]
llvmdev = "17.0.6"
[feature.llvm18.host-dependencies]
llvmdev = "18.1.8"
[feature.llvm19.host-dependencies]
llvmdev = "19.1.4"
[feature.llvm12.target.linux.host-dependencies]
libunwind = "1.7.2"
[feature.llvm13.target.linux.host-dependencies]
libunwind = "1.7.2"
[feature.llvm14.target.linux.host-dependencies]
libunwind = "1.7.2"
[feature.llvm15.target.linux.host-dependencies]
libunwind = "1.7.2"
[feature.llvm16.target.linux.host-dependencies]
libunwind = "1.7.2"
[feature.llvm17.target.linux.host-dependencies]
libunwind = "1.7.2"
[feature.llvm18.target.linux.host-dependencies]
libunwind = "1.7.2"
[feature.llvm19.target.linux.host-dependencies]
libunwind = "1.7.2"
# Dependencies to build the project to be installed for the target architecture.
# host == target
[feature.build.host-dependencies]
pytest = "8.1.1"
jupyter = "1.0.0"
xeus = "5.1.0"
xeus-zmq = "3.0.0"
nlohmann_json = "3.11.3"
jupyter_kernel_test = "0.7.0"
xonsh = "0.16.0"
numpy = "1.26.4"
rapidjson = "1.1.0"
zlib = "*"
zstd-static = ">=1.5.6,<2"
# Dependencies to build the project to be installed on the build machine.
# feature.default.build-dependencies
[build-dependencies]
python = "3.12"
[feature.build.build-dependencies]
python = "3.12"
cmake = "3.29.1"
ninja = "1.11.1"
#cxx-compiler = "*"
re2c = "3.1"
[feature.test.build-dependencies]
python = "3.12"
toml = "0.10.2"
cmake = "3.29.1"
ninja = "1.11.1"
[feature.build.target.unix.build-dependencies]
bison = "3.4"
[feature.build.target.win.build-dependencies]
m2-bison = "3.0.4"
[feature.build.tasks]
build = "bash ./build1.sh"
[environments]
llvm10 = {features = ["llvm10", "build"]}
llvm11 = {features = ["llvm11", "build"]}
llvm12 = {features = ["llvm12", "build"]}
llvm13 = {features = ["llvm13", "build"]}
llvm14 = {features = ["llvm14", "build"]}
llvm15 = {features = ["llvm15", "build"]}
llvm16 = {features = ["llvm16", "build"]}
llvm17 = {features = ["llvm17", "build"]}
llvm18 = {features = ["llvm18", "build"]}
llvm19 = {features = ["llvm19", "build"]}
test = {features = ["test"]}