Skip to content

Commit 2f7d968

Browse files
authored
Improve std feature flag in README and CI (#66)
1 parent 63a7b92 commit 2f7d968

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ jobs:
7575
working-directory: ${{ matrix.project_dir }}
7676
run: >
7777
rustup component add rust-src;
78-
RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features="std/optimize_for_size" --target x86_64-unknown-linux-gnu --release;
78+
RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features="optimize_for_size" --target x86_64-unknown-linux-gnu --release;
7979
cargo +nightly build -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target x86_64-unknown-linux-gnu --release;

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ host: x86_64-apple-darwin
205205
# Add the =std,panic_abort to the option to make panic = "abort" Cargo.toml option work.
206206
# See: https://github.com/rust-lang/wg-cargo-std-aware/issues/56
207207
$ RUSTFLAGS="-Zlocation-detail=none" cargo +nightly build -Z build-std=std,panic_abort \
208-
-Z build-std-features="std/optimize_for_size" \
208+
-Z build-std-features="optimize_for_size" \
209209
--target x86_64-apple-darwin --release
210210
```
211211

0 commit comments

Comments
 (0)