File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 52
52
shell : bash
53
53
run : |
54
54
export PATH=$PATH:$HOME/d/protoc/bin
55
- export RUSTFLAGS="-C link-arg=-fuse-ld=lld -C target-cpu=native -C debuginfo=line-tables-only"
55
+ unset RUSTFLAGS
56
56
echo $RUSTFLAGS
57
57
cargo test --lib --tests --bins --features avro,json,backtrace --profile=release-windows
58
58
cd datafusion-cli
Original file line number Diff line number Diff line change @@ -171,17 +171,22 @@ panic = 'unwind'
171
171
rpath = false
172
172
173
173
[profile .release-windows ]
174
- codegen-units = 1024
174
+ codegen-units = 16
175
175
debug = ' line-directives-only'
176
176
debug-assertions = false
177
- incremental = true
177
+ incremental = false
178
178
inherits = " release"
179
179
lto = false
180
- opt-level = 1
180
+ opt-level = 3
181
181
overflow-checks = false
182
182
panic = ' unwind'
183
183
rpath = false
184
184
185
+ [profile .release-windows .build-override ]
186
+ opt-level = 0
187
+ codegen-units = 256
188
+ debug = false
189
+
185
190
[workspace .lints .clippy ]
186
191
# Detects large stack-allocated futures that may cause stack overflow crashes (see threshold in clippy.toml)
187
192
large_futures = " warn"
You can’t perform that action at this time.
0 commit comments