Browse Source

更新drstd到725582d36d && 编译时指定工具链 (#25)

LoGin 1 year ago
parent
commit
a3341790a8
2 changed files with 3 additions and 3 deletions
  1. 1 1
      Cargo.toml
  2. 2 2
      Makefile

+ 1 - 1
Cargo.toml

@@ -14,7 +14,7 @@ hashbrown = "0.11"
 cfg-if = { version = "1.0"}
 
 [target.'cfg(target_os = "dragonos")'.dependencies]
-drstd = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/drstd.git", rev = "876bfc9744" }
+drstd = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/drstd.git", rev = "725582d36d" }
 
 lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
 

+ 2 - 2
Makefile

@@ -9,7 +9,7 @@ TMP_INSTALL_DIR=$(OUTPUT_DIR)/tmp_install
 all: build
 
 build:
-	cargo -Z build-std=core,alloc,compiler_builtins build --target ./x86_64-unknown-dragonos.json --release
+	cargo +nightly-2023-08-15 -Z build-std=core,alloc,compiler_builtins build --target ./x86_64-unknown-dragonos.json --release
 
 install:
 	mkdir -p $(TMP_INSTALL_DIR)
@@ -19,7 +19,7 @@ install:
 
 	cp ./parse_test/shell.service $(REACH_ETC_DIR)/system/shell.service
 
-	cargo -Z build-std=core,alloc,compiler_builtins install --target $(TARGET) --path .  --root $(TMP_INSTALL_DIR)
+	cargo +nightly-2023-08-15 -Z build-std=core,alloc,compiler_builtins install --target $(TARGET) --path .  --root $(TMP_INSTALL_DIR)
 	mv $(TMP_INSTALL_DIR)/bin/DragonReach $(REACH_BIN_DIR)/DragonReach
 	rm -rf $(TMP_INSTALL_DIR)