mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
update readme.md add wsl note (#7349)
This commit is contained in:
parent
a38acb62a9
commit
f8b4b81ac7
13
README.md
13
README.md
@ -57,6 +57,19 @@ make -j$(($(nproc) + 1)) V=s
|
||||
|
||||
编译完成后输出路径:bin/targets
|
||||
|
||||
如果你使用WSL或WSL2进行编译:
|
||||
------
|
||||
由于wsl的PATH路径中包含带有空格的Windows路径,有可能会导致编译失败,请在将make -j1 V=s或make -j$(($(nproc) + 1)) V=s改为
|
||||
|
||||
首次编译:
|
||||
```bash
|
||||
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin make -j1 V=s
|
||||
```
|
||||
二次编译:
|
||||
```bash
|
||||
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin make -j$(($(nproc) + 1)) V=s
|
||||
```
|
||||
|
||||
特别提示:
|
||||
------
|
||||
1. 源代码中绝不含任何后门和可以监控或者劫持你的 HTTPS 的闭源软件, SSL 安全是互联网最后的壁垒。安全干净才是固件应该做到的;
|
||||
|
Loading…
Reference in New Issue
Block a user