File tree Expand file tree Collapse file tree 2 files changed +33
-40
lines changed Expand file tree Collapse file tree 2 files changed +33
-40
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,45 @@ members = [
7
7
" builtins-test" ,
8
8
" builtins-test-intrinsics" ,
9
9
" compiler-builtins" ,
10
+ " crates/libm-macros" ,
11
+ " libm" ,
12
+ # FIXME(libm): disabled until tests work in CI
13
+ # "libm-test",
14
+ # "crates/musl-math-sys",
15
+ # "crates/util",
10
16
]
11
17
12
18
default-members = [
13
- " compiler-builtins" ,
14
19
" builtins-test" ,
20
+ " compiler-builtins" ,
21
+ " crates/libm-macros" ,
22
+ # FIXME(libm): disabled until tests work in CI
23
+ # "crates/libm-test"
24
+ " libm" ,
15
25
]
16
26
17
27
[profile .release ]
18
- panic = ' abort'
28
+ panic = " abort"
19
29
20
30
[profile .dev ]
21
- panic = ' abort'
31
+ panic = " abort"
32
+
33
+ # FIXME(libm): these profiles are needed for testing
34
+ # # The default release profile is unchanged.
35
+
36
+ # # Release mode with debug assertions
37
+ # [profile.release-checked]
38
+ # inherits = "release"
39
+ # debug-assertions = true
40
+ # overflow-checks = true
41
+
42
+ # # Release with maximum optimizations, which is very slow to build. This is also
43
+ # # what is needed to check `no-panic`.
44
+ # [profile.release-opt]
45
+ # inherits = "release"
46
+ # codegen-units = 1
47
+ # lto = "fat"
48
+
49
+ # [profile.bench]
50
+ # # Required for iai-callgrind
51
+ # debug = true
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments