mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-22 16:16:16 +04:00
add musl-rust
This commit is contained in:
parent
9f07940204
commit
29c5111410
51
issues.md
Normal file
51
issues.md
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# 问题记录
|
||||||
|
|
||||||
|
## 找不到 xbuild
|
||||||
|
|
||||||
|
- 报错
|
||||||
|
|
||||||
|
```
|
||||||
|
error: no such subcommand: `xbuild`
|
||||||
|
|
||||||
|
Did you mean `build`?
|
||||||
|
Makefile:41: recipe for target 'rust' failed
|
||||||
|
```
|
||||||
|
|
||||||
|
- 解决
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cargo install cargo-xbuild
|
||||||
|
```
|
||||||
|
|
||||||
|
## 找不到 autoreconf
|
||||||
|
|
||||||
|
- 报错
|
||||||
|
|
||||||
|
```
|
||||||
|
/bin/sh: 1: autoreconf: not found
|
||||||
|
```
|
||||||
|
|
||||||
|
- 解决
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo apt install autoconf
|
||||||
|
```
|
||||||
|
|
||||||
|
- 再报错
|
||||||
|
|
||||||
|
```
|
||||||
|
cd build/x86_64/iperf-3.6 && autoreconf
|
||||||
|
configure.ac:48: error: possibly undefined macro: AC_PROG_LIBTOOL
|
||||||
|
If this token and others are legitimate, please use m4_pattern_allow.
|
||||||
|
See the Autoconf documentation.
|
||||||
|
```
|
||||||
|
|
||||||
|
- 再解决
|
||||||
|
|
||||||
|
[https://github.com/maxmind/libmaxminddb/issues/9](ref)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
sudo apt install libtool
|
||||||
|
```
|
||||||
|
|
||||||
|
##
|
2
rboot
2
rboot
@ -1 +1 @@
|
|||||||
Subproject commit f7fa49b65dd3cdf2b3b390c3a282fe0a465d402a
|
Subproject commit 22aa23f1e0d0fb1f4ca87f2f7d2ae38b57870269
|
2
user
2
user
@ -1 +1 @@
|
|||||||
Subproject commit 0a5c08f8e368da85af4f49c4c13a720440380654
|
Subproject commit 3da415b196362f88afca212702068f08f82e453c
|
Loading…
Reference in New Issue
Block a user