Skip to content

Commit

Permalink
switch to the latest nightly compiler
Browse files Browse the repository at this point in the history
- using of optimized core functions (e.g. memcpy) isn't longer required
  • Loading branch information
stlankes committed Jan 23, 2021
1 parent 1401b3c commit 417bacf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cargo/config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[unstable]
build-std = ["core", "alloc"]
build-std-features = ["compiler-builtins-mem", "compiler-builtins-asm"]
build-std-features = ["compiler-builtins-mem"]

[target.x86_64-unknown-hermit-loader]
rustflags = [
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ docs:

loader:
@echo Build loader
cargo build $(opt) -Z build-std=core,alloc -Z build-std-features=compiler-builtins-mem,compiler-builtins-asm --target $(target)-loader.json
cargo build $(opt) -Z build-std=core,alloc -Z build-std-features=compiler-builtins-mem --target $(target)-loader.json
$(CONVERT)
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2020-12-23"
channel = "nightly-2021-01-22"
components = [ "rustfmt", "rust-src", "llvm-tools-preview"]

0 comments on commit 417bacf

Please # to comment.