You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/build-ubuntu-20.04.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -265,25 +265,32 @@ make -j"$(nproc)"
265
265
## Troubleshooting
266
266
267
267
### "gcc-10: command not found"
268
+
268
269
Ensure you installed `gcc-10` and `g++-10`:
270
+
269
271
```bash
270
272
sudo apt-get install -y gcc-10 g++-10
271
273
```
272
274
273
275
### Build fails with "Qt5Core not found"
276
+
274
277
The depends system should have built Qt. If this error persists, try:
278
+
275
279
```bash
276
280
rm -rf depends/built
277
281
CC=gcc-10 CXX=g++-10 make -C depends HOST=x86_64-pc-linux-gnu -j"$(nproc)"
278
282
```
279
283
280
284
### Out of disk space during depends build
285
+
281
286
The depends system can use 5-10GB of disk space. Ensure you have sufficient space:
287
+
282
288
```bash
283
289
df -h
284
290
```
285
291
286
292
### Build hangs or takes very long
293
+
287
294
This is normal for the first build. The depends system downloads and compiles many libraries. Use `-j$(nproc)` for parallel builds, which significantly speeds up the process.
288
295
289
296
---
@@ -293,4 +300,3 @@ This is normal for the first build. The depends system downloads and compiles ma
293
300
- See [INSTALL.md](../INSTALL.md) for general installation instructions
294
301
- See [README.md](../README.md) for usage documentation
295
302
- Join the community on GitHub Discussions for questions and support
0 commit comments